File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ concurrency:
55 cancel-in-progress : true
66
77on :
8- push :
9- branches :
10- - main
118 workflow_dispatch :
129 inputs :
1310 version :
Original file line number Diff line number Diff line change @@ -84,16 +84,16 @@ jobs:
8484 steps :
8585 - uses : actions/checkout@v5
8686 - name : Build
87- id : build
8887 run : docker build --build-arg NODE_VERSION=${{matrix.node_version}} --output type=local,dest=./host-artifacts .
8988 - name : Output
89+ id : asset
9090 run : |
9191 cd host-artifacts/out
9292 echo "asset=$(echo *.tar.gz)" >> "$GITHUB_OUTPUT"
9393 - name : Upload release asset
9494 run : |
9595 git config --global --add safe.directory $(pwd)
96- gh release upload ${{ github.event.release.tag_name }}${{ github.event.inputs.name }} host-artifacts/out/${{ steps.build .outputs.asset }} --clobber
96+ gh release upload ${{ github.event.release.tag_name }}${{ github.event.inputs.name }} host-artifacts/out/${{ steps.asset .outputs.asset }} --clobber
9797 env :
9898 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
9999
You can’t perform that action at this time.
0 commit comments