Skip to content

Commit

Permalink
Update release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmmjackson committed Sep 17, 2023
1 parent 24594ff commit e9bed79
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
args: --target aarch64-apple-darwin --release
- run: ls target
- uses: actions/upload-artifact@v3
with:
name: aarch64-apple-darwin
path: upnotify/upnotify
path: target/aarch64-apple-darwin/release/upnotify
build-x86_64-apple-darwin:
runs-on: macos-latest
steps:
Expand All @@ -34,11 +34,11 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
args: --target x86_64-apple-darwin --release
- uses: actions/upload-artifact@v3
with:
name: x86_64-apple-darwin
path: upnotify/upnotify
path: target/x86_64-apple-darwin/release/upnotify
build-aarch64-unknown-linux-gnu:
runs-on: ubuntu-latest
steps:
Expand All @@ -51,11 +51,11 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
args: --target aarch64-unknown-linux-gnu --release
- uses: actions/upload-artifact@v3
with:
name: aarch64-unknown-linux-gnu
path: upnotify/upnotify
path: target/aarch64-unknown-linux-gnu/release/upnotify
build-x86_64-unknown-linux-gnu:
runs-on: ubuntu-latest
steps:
Expand All @@ -68,11 +68,11 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
args: --target x86_64-unknown-linux-gnu --release
- uses: actions/upload-artifact@v3
with:
name: x86_64-unknown-linux-gnu
path: upnotify/upnotify
path: target/aarch64-unknown-linux-gnu/release/upnotify
build-x86_64-pc-windows-msvc:
runs-on: windows-latest
steps:
Expand All @@ -85,11 +85,11 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
args: --target x86_64-pc-windows-msvc --release
- uses: actions/upload-artifact@v3
with:
name: x86_64-pc-windows-msvc
path: upnotify/upnotify
path: target/x86_64-pc-windows-msvc/release/upnotify
build-aarch64-pc-windows-msvc:
runs-on: windows-latest
steps:
Expand All @@ -102,11 +102,11 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
args: --target aarch64-pc-windows-msvc --release
- uses: actions/upload-artifact@v3
with:
name: aarch64-pc-windows-msvc
path: upnotify/upnotify
path: target/aarch64-pc-windows-msvc/release/upnotify
archive:
runs-on: ubuntu-latest
needs:
Expand Down

0 comments on commit e9bed79

Please sign in to comment.