765 Search results for "runs-on"
GitHub Actions / Use cases and examples / Deployment /
Deploying Node.js to Azure App Service
'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 / Security / Security harden deployments /
Configuring OpenID Connect in Google Cloud Platform
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 / Use cases and examples / Containerized services /
About service containers
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 / Use cases and examples / Publish packages /
Publishing Java packages with Maven
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 / Use cases and examples / Deployment /
Deploying Java to Azure App Service
this to the Java version to use
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java version
GitHub Actions / Share automations / Create actions /
Creating a Docker container action
Marketplace.
.github/workflows/main.yml
YAML
on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- name: Hello world action
GitHub Actions / Use cases and examples / Deployment /
Deploying Python to Azure App Service
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 / Use cases and examples / Deployment /
Deploying Docker to Azure App Service
branches:
- main
permissions:
contents: 'read'
packages: 'write'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker
GitHub Actions / Use cases and examples / Deployment /
Deploying .NET to Azure App Service
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 / Self-hosted runners / Actions Runner Controller /
Quickstart for Actions Runner Controller
INSTALLATION_NAME value carefully. You will use the installation name as the value of runs-on in your workflows. For more information, see Workflow syntax for GitHub