Lab01 - Rloota is testing variables and secrets π #3
This file contains hidden or 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: Lab01 Variables and Secrets | |
| run-name: Lab01 - ${{ github.actor }} is testing variables and secrets π | |
| permissions: read-all | |
| on: | |
| workflow_dispatch: | |
| env: | |
| MY_VARIABLE: Hello, GitHub Actions! | |
| jobs: | |
| example-job: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "print var MY_VARIABLE" | |
| run: echo "$MY_VARIABLE" && whoami |