Skip to content

Commit

Permalink
chore: fix artifact uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
blake-mealey committed Oct 12, 2024
1 parent 7b49966 commit 82dc51c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
filename: mantle-win64.zip
path: mantle/target/release/mantle.exe
- name: Upload binary artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: mantle-win64
path: mantle-win64.zip
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
filename: mantle-macos.zip
path: mantle/target/release/mantle
- name: Upload binary artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: mantle-macos
path: mantle-macos.zip
Expand Down Expand Up @@ -89,15 +89,15 @@ jobs:
filename: mantle-linux.zip
path: mantle/target/release/mantle
- name: Upload binary artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: mantle-linux
path: mantle-linux.zip
- name: Generate schema
working-directory: mantle
run: cargo run --release --bin gen_schema > schema.json
- name: Upload schema artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: schema
path: mantle/schema.json
Expand Down

0 comments on commit 82dc51c

Please sign in to comment.