Skip to content

Commit

Permalink
fix: release versioning (#1401)
Browse files Browse the repository at this point in the history
  • Loading branch information
davenewza authored Feb 5, 2024
1 parent 42c8d82 commit ba80730
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,17 @@ jobs:
needs: distribution
runs-on: ubuntu-latest
outputs:
new_version: ${{ steps.semantic.outputs.outputs.new_release_version }}
new_version: ${{ steps.semantic.outputs.new_release_version }}
steps:
- name: Using branch
shell: bash
run: |
echo ${{ env.BRANCH }}
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
ref: ${{ github.ref_name }}
ref: ${{ env.BRANCH }}
fetch-depth: 0
- name: Semantic Release
id: semantic
Expand All @@ -68,6 +72,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Using tag
shell: bash
run: |
echo ${{ needs.semantic-release.outputs.new_version }}
- name: Checkout
Expand Down Expand Up @@ -107,6 +112,7 @@ jobs:
]
steps:
- name: Using tag
shell: bash
run: |
echo ${{ needs.semantic-release.outputs.new_version }}
- uses: actions/setup-go@v3
Expand Down

0 comments on commit ba80730

Please sign in to comment.