Skip to content

Commit

Permalink
fixed failing build workflows due to matrices improper
Browse files Browse the repository at this point in the history
  • Loading branch information
hitblast committed Apr 4, 2024
1 parent 0aad2ed commit 93135bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: resfetch-win
name: resfetch-win-latest
path: target/release/deps/resfetch.exe
retention-days: 1

build-unix:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os_name: [ubuntu, macos]

runs-on: ${{ matrix.os }}

Expand All @@ -43,6 +42,6 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: resfetch-${{ matrix.os_name }}
name: resfetch-${{ matrix.os }}
path: target/release/resfetch
retention-days: 1
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: resfetch-win
name: resfetch-win-latest
path: target/release/deps/resfetch.exe
retention-days: 90

Expand Down

0 comments on commit 93135bd

Please sign in to comment.