Skip to content

Instantly share code, notes, and snippets.

@oliverlabs
Created December 14, 2022 17:06
Show Gist options
  • Save oliverlabs/2b48e286c8e9b7139f842021a4c40344 to your computer and use it in GitHub Desktop.
Save oliverlabs/2b48e286c8e9b7139f842021a4c40344 to your computer and use it in GitHub Desktop.
Hello World GitHub Actions Workflow Pipeline
name: deploy-toy-website
on: [workflow_dispatch]
jobs:
say-hello:
runs-on: ubuntu-latest
steps:
- name: Say hello
run: echo "Hello, World!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment