We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa476f4 commit 5f00020Copy full SHA for 5f00020
.github/workflows/build.yml
@@ -28,7 +28,7 @@ jobs:
28
- uses: actions/upload-artifact@v4
29
with:
30
name: Boot.Metrics-${{ steps.build.outputs.TAG_NAME }}
31
- path: output/Boot.Metrics-${{ steps.build.outputs.TAG_NAME }}.zip
+ path: ${{ steps.build.outputs.PACKDIR }}/**/*.dll
32
33
- uses: softprops/action-gh-release@v2
34
if: startsWith(github.ref, 'refs/tags/')
build.sh
@@ -19,9 +19,10 @@ zip -9r Boot.Metrics-"${TAG}".zip libraries plugins
19
popd
20
21
mkdir -p output
22
-cp "${PACKDIR}"/Boot.Metrics-"${TAG}".zip output
+mv "${PACKDIR}"/Boot.Metrics-"${TAG}".zip output
23
24
if [[ -v GITHUB_OUTPUT ]]
25
then
26
echo "TAG_NAME=${TAG}" >> "$GITHUB_OUTPUT"
27
+ echo "PACKDIR=${PACKDIR}" >> "$GITHUB_OUTPUT"
fi
0 commit comments