Skip to content

Commit 2f1d4c1

Browse files
author
Rintaro Okamura
committed
[patch] 💚 Fix
Signed-off-by: Rintaro Okamura <[email protected]>
1 parent 6fede8e commit 2f1d4c1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,27 +98,29 @@ jobs:
9898
if: startsWith( github.ref, 'refs/tags/')
9999
with:
100100
name: gitwerk-linux-amd64.zip
101+
path: tmp
101102
- name: Upload Release Asset (linux)
102103
if: startsWith( github.ref, 'refs/tags/')
103104
uses: actions/[email protected]
104105
env:
105106
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
106107
with:
107108
upload_url: ${{ steps.create_release.outputs.upload_url }}
108-
asset_path: ./gitwerk-linux-amd64.zip
109+
asset_path: ./tmp/gitwerk-linux-amd64.zip
109110
asset_name: gitwerk-linux-amd64.zip
110111
asset_content_type: application/zip
111112
- uses: actions/download-artifact@v1
112113
if: startsWith( github.ref, 'refs/tags/')
113114
with:
114115
name: gitwerk-macos-amd64.zip
116+
path: tmp
115117
- name: Upload Release Asset (macos)
116118
if: startsWith( github.ref, 'refs/tags/')
117119
uses: actions/[email protected]
118120
env:
119121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
120122
with:
121123
upload_url: ${{ steps.create_release.outputs.upload_url }}
122-
asset_path: ./gitwerk-macos-amd64.zip
124+
asset_path: ./tmp/gitwerk-macos-amd64.zip
123125
asset_name: gitwerk-macos-amd64.zip
124126
asset_content_type: application/zip

0 commit comments

Comments
 (0)