Skip to content

Instantly share code, notes, and snippets.

@weibeld
Created July 31, 2020 12:02
Show Gist options
  • Save weibeld/0b56f6c9f99b521808a255edd96e97a4 to your computer and use it in GitHub Desktop.
Save weibeld/0b56f6c9f99b521808a255edd96e97a4 to your computer and use it in GitHub Desktop.
GitHub Actions example workflow — Secrets
name: secrets
on: workflow_dispatch
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: my-step
run: echo "${{ secrets.MY_SECRET }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment