Skip to content

Commit

Permalink
fix: release versioning (#1400)
Browse files Browse the repository at this point in the history
  • Loading branch information
davenewza authored Feb 5, 2024
1 parent e46911b commit 42c8d82
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ jobs:
- distribution
runs-on: ubuntu-latest
steps:
- name: Using tag
run: |
echo ${{ needs.semantic-release.outputs.new_version }}
- name: Checkout
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -103,6 +106,9 @@ jobs:
"keel"
]
steps:
- name: Using tag
run: |
echo ${{ needs.semantic-release.outputs.new_version }}
- uses: actions/setup-go@v3
with:
go-version: "1.20"
Expand All @@ -127,7 +133,8 @@ jobs:
- name: Install ${{ matrix.package }} publish dependencies
working-directory: ./packages/${{ matrix.package }}
run: pnpm install --frozen-lockfile
- uses: mad9000/actions-find-and-replace-string@2
- name: Find and replace
uses: mad9000/actions-find-and-replace-string@3
id: make_package_version
with:
source: ${{ needs.semantic-release.outputs.new_version }}
Expand Down

0 comments on commit 42c8d82

Please sign in to comment.