Skip to content

Commit

Permalink
ci: fix build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
orestesgaolin committed Oct 15, 2024
1 parent e7491bd commit 78eaf96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- run: mkdir build
- run: mkdir build/${{ matrix.os }}
- run: dart compile exe bin/changelog_cli.dart -o build/${{ matrix.os }}/${{ matrix.binary-name }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: bin-${{ matrix.os }}
path: build/${{ matrix.os }}
Expand All @@ -37,15 +37,15 @@ jobs:
name: Create GitHub Release and Upload Artifacts
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: bin-ubuntu-latest
path: bin-linux
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: bin-macos-latest
path: bin-macos
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: bin-windows-latest
path: bin-windows
Expand Down

0 comments on commit 78eaf96

Please sign in to comment.