Skip to content

Commit

Permalink
fix: use correct artifact id
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Aug 11, 2024
1 parent 37f71a2 commit 05de5c2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- run: .\build.cmd
- uses: actions/upload-artifact@v4
with:
name: cpp2b.exe
name: cpp2b-windows-latest
path: dist/debug/cpp2b.exe
if-no-files-found: error
retention-days: 0
Expand All @@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: 'cpp2b.exe'
name: cpp2b-windows-latest
- run: .\cpp2b.exe build
- run: Copy-Item .\.cache\cpp2\bin\cpp2b.exe -Destination .\cpp2b-self.exe
- run: .\cpp2b-self.exe build
Expand All @@ -65,7 +65,7 @@ jobs:
- run: CC=clang-18 ./build.sh
- uses: actions/upload-artifact@v4
with:
name: cpp2b
name: cpp2b-ubuntu-24.04
path: dist/debug/cpp2b
if-no-files-found: error
retention-days: 0
Expand All @@ -82,7 +82,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: cpp2b
name: cpp2b-ubuntu-24.04
- run: chmod +x cpp2b
- run: ./cpp2b build
- run: ./.cache/cpp2/bin/cpp2b build
Expand All @@ -92,6 +92,7 @@ jobs:
needs: [build-script-windows, build-script-linux]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
example:
- init
Expand Down

0 comments on commit 05de5c2

Please sign in to comment.