Skip to main content

174 다음에 대한 검색 결과 "runs-on"

GitHub Actions / 사용 사례 및 예제 / 배포 /

Azure Kubernetes Service에 배포

# set this to an array of override file paths on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Azure Login uses:

코드 보안 / 코드 검사 / 코드 검사와의 통합 /

GitHub에 SARIF 파일 업로드

Thursday at 15:45 UTC. on: push: schedule: - cron: '45 15 * * 4' jobs: build: runs-on: ubuntu-latest permissions: # required for all workflows security-events:

GitHub Actions / 워크플로 작성 / 워크플로에서 수행하는 작업 선택 /

워크플로 및 작업의 동시 실행 제어

워크플로 내에서 작업의 동시성을 제한할 수도 있습니다. on: push: branches: - main jobs: job-1: runs-on: ubuntu-latest concurrency: group: example-group cancel-in-progress: true

코드 보안 / 코드 검사 / 고급 설정 만들기 /

컨테이너에서 CodeQL 코드 검사 실행

branches: [main] schedule: - cron: '15 5 * * 3' jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: security-events: write actions: read strategy:

GitHub Actions / 워크플로 작성 / 워크플로에서 수행하는 작업 선택 /

기본 셸 및 작업 디렉터리 설정

워크플로에 정의된 이름과 동일한 기본 설정을 재정의합니다. 예시: 작업에 대한 기본 run 단계 옵션 설정 jobs: job1: runs-on: ubuntu-latest defaults: run: shell: bash working-directory: ./scripts

GitHub Issues / Projects / 프로젝트 자동화 /

작업을 사용하여 Projects 자동화

review". on: pull_request: types: - ready_for_review jobs: track_pr: runs-on: ubuntu-latest steps: # Uses the [actions/create-github-app-token](https://github

GitHub Actions / 보안 / 배포 보안 강화 /

Amazon Web Services에서 OpenID Connect 구성

read # This is required for actions/checkout jobs: S3PackageUpload: runs-on: ubuntu-latest steps: - name: Git clone the repository uses: actions/checkout@v4

GitHub Actions / 사용 사례 및 예제 / 배포 /

Amazon Elastic Container Service에 배포

containerDefinitions section of your task definition jobs: deploy: name: Deploy runs-on: ubuntu-latest environment: production steps: - name: Checkout uses: actions/checkout@v4

GitHub Actions / 보안 / 배포 보안 강화 /

클라우드 공급자에서 OpenID Connect 구성

자세한 내용은 JavaScript 작업 만들기을(를) 참조하세요. jobs: job: environment: Production runs-on: ubuntu-latest steps: - name: Install OIDC Client from Core Package run:

GitHub Actions / 사용 사례 및 예제 / 배포 /

Google Kubernetes Engine에 배포

jobs: setup-build-publish-deploy: name: Setup, Build, Publish, and Deploy runs-on: ubuntu-latest environment: production steps: - name: Checkout uses: actions/checkout@v4