Actor #12
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
| # Publish GitHub workflow artifacts tutorial example | |
| name: Github Env Output test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| github-actions-environment-variables-ubuntu: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Ubuntu GitHub Actions environment variables List | |
| run: env | |
| github-actions-environment-variables-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Windows GitHub Actions environment variables List | |
| run: env | |
| github-actions-environment-variables-macos: | |
| runs-on: macos-latest | |
| steps: | |
| - name: MacOs List of GitHub Actions environment variables | |
| run: env |