@@ -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/')
103104104105 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/')
117119118120 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