Skip to content

Commit

Permalink
fix release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
donavanbecker committed Jun 19, 2024
1 parent 6ae15f0 commit 94b0eaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:

jobs:
tag:
name: Verify Release Tag
name: Release Tag
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get_version.outputs.version }}
version: v${{ steps.get_version.outputs.version }}
steps:
- name: Get Release Tag
id: get_version
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
build:
needs: [tag, release_type]
name: Build Packages for (${{ matrix.name }}) v${{ needs.tag.outputs.version }}
name: Build Packages for (${{ matrix.name }}) ${{ needs.tag.outputs.version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down

0 comments on commit 94b0eaf

Please sign in to comment.