Skip to content

Commit f38b9cb

Browse files
authored
build: Release artifacts (#6)
* build: Release artifacts * build: Use project version from build workflow
1 parent e94ba57 commit f38b9cb

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci.yaml

+6-4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ on:
1313
jobs:
1414
build:
1515
runs-on: ubuntu-24.04
16+
outputs:
17+
publish_version: ${{ steps.project_version.outputs.project_version }}
1618
steps:
1719
- name: Checkout
1820
uses: actions/checkout@v4
@@ -86,10 +88,10 @@ jobs:
8688
if: startsWith(github.ref, 'refs/tags/')
8789
with:
8890
files: |
89-
converter/build/distributions/converter-${{ steps.project_version.outputs.project_version }}.tar.gz
90-
converter/build/distributions/converter-${{ steps.project_version.outputs.project_version }}.tar.gz.sha256
91-
converter/build/distributions/converter-${{ steps.project_version.outputs.project_version }}.zip
92-
converter/build/distributions/converter-${{ steps.project_version.outputs.project_version }}.zip.sha256
91+
converter/build/distributions/converter-${{ needs.build.outputs.publish_version }}.tar.gz
92+
converter/build/distributions/converter-${{ needs.build.outputs.publish_version }}.tar.gz.sha256
93+
converter/build/distributions/converter-${{ needs.build.outputs.publish_version }}.zip
94+
converter/build/distributions/converter-${{ needs.build.outputs.publish_version }}.zip.sha256
9395
body: |
9496
** V4 Keystore Converter Release **
9597
draft: true

0 commit comments

Comments
 (0)