Skip to content

Kevin-M-Johnson is learning GitHub Actions #38

Kevin-M-Johnson is learning GitHub Actions

Kevin-M-Johnson is learning GitHub Actions #38

name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
on: [workflow_dispatch]
jobs:
first_demo_job:
runs-on: self-hosted
name: The first demo job
steps:
- name: Show the demo running
env:
VAR1: This is
VAR2: A Demo of
VAR3: GitHub Actions
VAR4: Workflow jobs
run: |
echo $VAR1 $VAR2 $VAR3 $VAR4.