291 Suchergebnisse für "runs-on"
GitHub Actions / Anwendungsfälle und Beispiele / Containerdienste /
Informationen zu Service-Containern
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 / Anwendungsfälle und Beispiele / Bereitstellung /
Bereitstellen von Java in 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
REST-API / Authentifizierung /
Authentifizieren bei der REST-API
information about the path, see Getting started with the REST API.
jobs:
use_api:
runs-on: ubuntu-latest
permissions: {}
steps:
- env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN
GitHub Actions / Anwendungsfälle und Beispiele / Bereitstellung /
Bereitstellen von Node.js in 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 / Anwendungsfälle und Beispiele / Containerdienste /
PostgreSQL-Service-Container erstellen
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 / Freigeben von Automatisierungen / Erstellen von Aktionen /
Erstellen einer zusammengesetzten Aktion
who-to-greet durch deinen Namen ersetzen.
YAML
on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- uses: actions/checkout@v4
REST-API / Aktionen /
REST-API-Endpunkte für Workflowausführungen
Workflowausführungen und Bereitstellungen.
Re-run a job from a workflow run
Re-run a job and its dependent jobs in a workflow run.
OAuth app tokens and personal access
GitHub Actions / Anwendungsfälle und Beispiele / Containerdienste /
Redis-Service-Container erstellen
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 / Schreiben von Workflows / Auswählen, was in Workflows passiert /
Verwenden von Umgebungen für die Bereitstellung
production.
name: Deployment
on:
push:
branches:
- main
jobs:
deployment:
runs-on: ubuntu-latest
environment: production
steps:
- name: deploy
# ...deployment-specific
GitHub Actions / Anwendungsfälle und Beispiele / Bereitstellung /
Bereitstellen von Python in 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