Skip to content

Commit

Permalink
bump deps (including github artifacts v4)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Dec 23, 2023
1 parent b2dda41 commit fae227e
Show file tree
Hide file tree
Showing 3 changed files with 279 additions and 240 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ jobs:
if: github.event_name == 'push'
- run: docker cp "$(docker create ${{ steps.docker_build_amd64.outputs.imageid }}):/fishnet" fishnet-x86_64-unknown-linux-musl
- run: docker cp "$(docker create ${{ steps.docker_build_arm64.outputs.imageid }}):/fishnet" fishnet-aarch64-unknown-linux-musl
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: fishnet-x86_64-unknown-linux-musl
path: fishnet-x86_64-unknown-linux-musl
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: fishnet-aarch64-unknown-linux-musl
path: fishnet-aarch64-unknown-linux-musl
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
- run: cargo install --force cargo-auditable
- run: cargo auditable build --release --target x86_64-pc-windows-gnu -vv
- run: mv target/x86_64-pc-windows-gnu/release/fishnet.exe fishnet-x86_64-pc-windows-gnu.exe
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: fishnet-x86_64-pc-windows-gnu
path: fishnet-x86_64-pc-windows-gnu.exe
Expand All @@ -111,7 +111,7 @@ jobs:
- run: cargo install --force cargo-auditable
- run: cargo auditable build --release -vv
- run: mv target/release/fishnet fishnet-x86_64-apple-darwin
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: fishnet-x86_64-apple-darwin
path: fishnet-x86_64-apple-darwin
Expand All @@ -129,7 +129,7 @@ jobs:
- run: cargo install --force cargo-auditable
- run: cargo auditable build --release --target aarch64-apple-darwin -vv
- run: mv target/aarch64-apple-darwin/release/fishnet fishnet-aarch64-apple-darwin
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: fishnet-aarch64-apple-darwin
path: fishnet-aarch64-apple-darwin
Expand All @@ -144,7 +144,7 @@ jobs:
steps:
- run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
id: get_version
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
- run: |
mkdir upload
cp fishnet-x86_64-unknown-linux-musl/fishnet-x86_64-unknown-linux-musl upload/fishnet-${{ steps.get_version.outputs.VERSION }}-x86_64-unknown-linux-gnu # bc for --auto-update
Expand Down
Loading

0 comments on commit fae227e

Please sign in to comment.