Skip to content

Commit

Permalink
Add workflow debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
elzik committed Oct 28, 2023
1 parent cc7a6ea commit 9e67a3e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,13 @@ jobs:
if: matrix.os == 'windows-latest'
run: ./Build/build-windows-installer.ps1
shell: pwsh
- name: Debug Output
run: |
Write-Output "github.ref_name:${{ github.ref_name }}"
Write-Output "github.event_name:${{ github.event_name }}"
Write-Output "github.ref:${{ github.ref }}"
shell: pwsh
- name: Tag With SemVer
if: github.ref_name == 'main'
run: ./Build/tag-with-semver.ps1
shell: pwsh
- name: Release
uses: softprops/action-gh-release@v1
if: github.ref_name == 'main' || (github.event_name == 'push' && contains(github.ref, 'refs/tags/'))

0 comments on commit 9e67a3e

Please sign in to comment.