We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 271e758 commit 4d5be73Copy full SHA for 4d5be73
.github/workflows/release.yml
@@ -13,11 +13,10 @@ jobs:
13
needs: package
14
runs-on: ubuntu-latest
15
steps:
16
+ - uses: actions/checkout@v3
17
- uses: actions/download-artifact@v3
- with:
18
- name: package
19
- run: |
20
- gh release create "${TAG}" ./*.msi ./*.zip
+ gh release create "${TAG}" ./build/*.msi ./build/*.zip
21
env:
22
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
TAG: ${{ inputs.tag }}
.github/workflows/reusable-package.yml
@@ -1,4 +1,4 @@
1
-name: Package
+name: Reusable package
2
on:
3
workflow_call:
4
jobs:
@@ -14,7 +14,7 @@ jobs:
run: cmake --build build --target package
- uses: actions/upload-artifact@v3
with:
+ name: build
path: |
build/*.msi
build/*.zip
0 commit comments