Skip to content

Commit

Permalink
Output debug after tag
Browse files Browse the repository at this point in the history
  • Loading branch information
elzik committed Oct 28, 2023
1 parent dae2bbf commit bceb23e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ jobs:
if: matrix.os == 'windows-latest'
run: ./Build/build-windows-installer.ps1
shell: pwsh
- name: Tag With SemVer
if: github.ref_name == 'main'
run: ./Build/tag-with-semver.ps1
shell: pwsh
- name: Debug Output
run: |
Write-Output "github.ref_name:${{ github.ref_name }}"
Expand All @@ -44,7 +48,6 @@ jobs:
$tag = git describe --tags --abbrev=0
Write-Output "tag:$tag"
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 bceb23e

Please sign in to comment.