174 다음에 대한 검색 결과 "runs-on"
GitHub Actions / 보안 / 배포 보안 강화 /
Google Cloud Platform에서 OpenID Connect 구성
branches:
- main
permissions:
id-token: write
jobs:
Get_OIDC_ID_token:
runs-on: ubuntu-latest
steps:
- id: 'auth'
name: 'Authenticate to GCP'
uses: 'g
GitHub Actions / 사용 사례 및 예제 / 패키지 게시 /
Maven을 사용하여 Java 패키지 게시
the Maven Central Repository
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Maven Central
GitHub Actions / 사용 사례 및 예제 / 컨테이너화된 서비스 /
서비스 컨테이너 정보
job
container-job:
# Containers must run in Linux based operating systems
runs-on: ubuntu-latest
# Docker Hub image that `container-job` executes in
container:
GitHub Actions / 사용 사례 및 예제 / 배포 /
Azure App Service에 Node.js 배포
'14.x' # set this to the node version to use
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
GitHub Actions / 사용 사례 및 예제 / 컨테이너화된 서비스 /
PostgreSQL 서비스 컨테이너 만들기
job
container-job:
# Containers must run in Linux based operating systems
runs-on: ubuntu-latest
# Docker Hub image that `container-job` executes in
container:
GitHub Actions / 사용 사례 및 예제 / 배포 /
Azure App Service에 Python 배포
this to the Python version to use
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
GitHub Actions / 사용 사례 및 예제 / 배포 /
Azure App Service에 .NET 배포
to the .NET Core version to use
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up .NET Core
GitHub Actions / 사용 사례 및 예제 / 컨테이너화된 서비스 /
Redis 서비스 컨테이너 만들기
job
container-job:
# Containers must run in Linux based operating systems
runs-on: ubuntu-latest
# Docker Hub image that `container-job` executes in
container:
GitHub Docs에 기여 / GitHub Docs에 대한 쓰기 /
코드 예제에 주석 추가하기
Post welcome comment
# Configures the operating system the job runs on.
runs-on: ubuntu-latest
# The `run` keyword tells the job to execute a command on
GitHub Actions / 사용 사례 및 예제 / 배포 /
Azure App Service에 Docker 배포
branches:
- main
permissions:
contents: 'read'
packages: 'write'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker