This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Actions Repo Vars and Secrets | ||
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 | ||
on: | ||
[push] | ||
jobs: | ||
Explore-GitHub-Actions-Var-Secrets: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: one | ||
run: echo "Repo Secret REPO_SECRET_MINOGUE: ${{ secret.REPO_SECRET_MINOGUE }}" | ||
- name: two | ||
run: echo "Repo Variable REPO_VAR_MINOGUE: ${{ vars.REPO_VAR_MINOGUE }}" | ||