1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-15 18:57:01 +00:00

use new paths from goreleaser (#1135)

* use new paths from goreleaser

* fix path from new goreleaser paths

* fix indent of .sh
This commit is contained in:
Casey Lee 2022-04-19 12:27:37 -07:00 committed by GitHub
parent 24bde1c462
commit e132806073
2 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ rm -f act-cli.*.nupkg
mkdir -p tools
cp LICENSE tools/LICENSE.txt
cp VERIFICATION tools/VERIFICATION.txt
cp dist/act_windows_amd64/act.exe tools/
cp dist/act_windows_amd64_v1/act.exe tools/
choco pack act-cli.nuspec --version ${VERSION}
if [[ "$INPUT_PUSH" == "true" ]]; then
choco push act-cli.${VERSION}.nupkg --api-key ${INPUT_APIKEY} -s https://push.chocolatey.org/ --timeout 180

View file

@ -80,7 +80,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: act-linux-amd64
path: dist/act_linux_amd64/act
path: dist/act_linux_amd64_v1/act
- name: Capture i386 (32-bit) Linux binary
if: ${{ !env.ACT }}
uses: actions/upload-artifact@v3
@ -110,7 +110,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: act-windows-amd64
path: dist/act_windows_amd64/act.exe
path: dist/act_windows_amd64_v1/act.exe
- name: Capture i386 (32-bit) Windows binary
if: ${{ !env.ACT }}
uses: actions/upload-artifact@v3
@ -134,7 +134,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: act-macos-amd64
path: dist/act_darwin_amd64/act
path: dist/act_darwin_amd64_v1/act
- name: Capture arm64 (64-bit) MacOS binary
if: ${{ !env.ACT }}
uses: actions/upload-artifact@v3