Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
guibranco authored Nov 22, 2024
1 parent 51ac5b4 commit b64a4dd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
outputs:
fullSemVer: ${{ steps.gitversion.outputs.fullSemVer }}
semVer: ${{ steps.gitversion.outputs.semVer }}

steps:
- name: Checkout repository
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
env:
fullSemVer: ${{ needs.deploy_service.outputs.fullSemVer }}
semVer: ${{ needs.deploy_service.outputs.semVer }}

steps:
- name: Create Release
Expand All @@ -71,7 +71,7 @@ jobs:
allowUpdates: false
draft: false
makeLatest: true
tag: v${{ env.fullSemVer }}
name: Release v${{ env.fullSemVer }}
tag: v${{ env.semVer }}
name: Release v${{ env.semVer }}
generateReleaseNotes: true
body: Release ${{ env.fullSemVer }} of ${{ github.repository }}
body: Release ${{ env.semVer }} of ${{ github.repository }}

0 comments on commit b64a4dd

Please sign in to comment.