Skip to content

Commit

Permalink
Fix some bit rot in the release action
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Elder committed Mar 16, 2023
1 parent bf24212 commit 11ef737
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
command: build
args: --release --target aarch64-apple-darwin
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: aarch64-apple-darwin
path: target/aarch64-apple-darwin/release/pg_parcel
Expand All @@ -46,7 +46,7 @@ jobs:
args: --release --target x86_64-apple-darwin
- name: Smoke test
run: target/x86_64-apple-darwin/release/pg_parcel --help
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: x86_64-apple-darwin
path: target/x86_64-apple-darwin/release/pg_parcel
Expand Down Expand Up @@ -76,8 +76,10 @@ jobs:
- name: Smoke test
run: |
find .
pg_parcel-apple-darwin --help
- uses: actions/upload-artifact@v2
ls -lR
chmod 0755 ./pg_parcel-apple-darwin
./pg_parcel-apple-darwin --help
- uses: actions/upload-artifact@v3
with:
name: apple-darwin
path: pg_parcel-apple-darwin
Expand Down Expand Up @@ -105,7 +107,7 @@ jobs:
args: --release --target x86_64-unknown-linux-musl
- name: Smoke test
run: target/x86_64-unknown-linux-musl/release/pg_parcel --help
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: linux
path: target/x86_64-unknown-linux-musl/release/pg_parcel
Expand Down

0 comments on commit 11ef737

Please sign in to comment.