Skip to content

Instantly share code, notes, and snippets.

@pndurette
Last active November 10, 2019 21:23
Show Gist options
  • Save pndurette/e7f509139d69b8b8a7c15defb3f926c3 to your computer and use it in GitHub Desktop.
Save pndurette/e7f509139d69b8b8a7c15defb3f926c3 to your computer and use it in GitHub Desktop.
GitHub Actions: Beyond CI/CD Medium Post Gists
name: hello
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run a one-line script
run: echo Hello, world!
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment