Cookbook
Debugging Github Actions
- name: Logging
run: |
echo ${{ github.repository }}
echo 'Hello!'Conditional steps
- name: Only run on Windows
if: ${{ runner.os == 'windows' }}
run: |
Write-Output "test output"Adding environment variables
Matrix strategies
Last updated