Skip to content

Commit 0485f9f

Browse files
committed
Fix release asset paths
1 parent 47c4289 commit 0485f9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
107107
with:
108108
upload_url: ${{ steps.create_release.outputs.upload_url }}
109-
asset_path: ./artifacts/taskrunner-linux-x86_64/taskrunner-linux.tar.gz
109+
asset_path: ./artifacts/taskrunner-linux-x86_64/dist/taskrunner-linux.tar.gz
110110
asset_name: taskrunner-linux.tar.gz
111111
asset_content_type: application/x-tar
112112

@@ -117,7 +117,7 @@ jobs:
117117
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
118118
with:
119119
upload_url: ${{ steps.create_release.outputs.upload_url }}
120-
asset_path: ./artifacts/taskrunner-linux-x86_64/taskrunner-linux-x86_64.tar.gz
120+
asset_path: ./artifacts/taskrunner-linux-x86_64/dist/taskrunner-linux-x86_64.tar.gz
121121
asset_name: taskrunner-linux-x86_64.tar.gz
122122
asset_content_type: application/x-tar
123123

@@ -128,6 +128,6 @@ jobs:
128128
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
129129
with:
130130
upload_url: ${{ steps.create_release.outputs.upload_url }}
131-
asset_path: ./artifacts/taskrunner-linux-arm64/taskrunner-linux-arm64.tar.gz
131+
asset_path: ./artifacts/taskrunner-linux-arm64/dist/taskrunner-linux-arm64.tar.gz
132132
asset_name: taskrunner-linux-arm64.tar.gz
133133
asset_content_type: application/x-tar

0 commit comments

Comments
 (0)