File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,16 @@ jobs:
15
15
# ./get-gauche.sh --prefix /usr --destdir package --version latest --force
16
16
# (cd package; tar czvf ../gauche-binary-ubuntu-latest.tar.gz .)
17
17
run : echo "placeholder" > gauche-binary-ubuntu-latest.tar.gz
18
- - name : " Get upload url"
19
- run : |
20
- upload_url=$(curl -sL https://api.github.com/repos/actions/checkout/releases/latest | jq -r '.upload_url')
21
- echo UPLOAD_URL=$upload_url >> $GITHUB_ENV
22
- - uses : shogo82148/actions-upload-release-asset@v1
23
- with :
24
- asset_path : gauche-binary-ubuntu-latest.tar.gz
25
- overwrite : true
26
- upload_url : ${{ env.UPLOAD_URL }}
18
+ # - name: "Get upload url"
19
+ # run: |
20
+ # upload_url=$(curl -sL https://api.github.com/repos/actions/checkout/releases/latest | jq -r '.upload_url')
21
+ # echo UPLOAD_URL=$upload_url >> $GITHUB_ENV
22
+ # - uses: shogo82148/actions-upload-release-asset@v1
23
+ # with:
24
+ # asset_path: gauche-binary-ubuntu-latest.tar.gz
25
+ # overwrite: true
26
+ # upload_url: ${{ env.UPLOAD_URL }}
27
+ - name : " Upload"
28
+ run : gh release upload v1 gauche-binary-ubuntu-latest.tar.gz
29
+ env :
30
+ GITHUB_TOKEN : ${{ github.TOKEN }}
You can’t perform that action at this time.
0 commit comments