Skip to content

Commit

Permalink
Restored the upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
kitao committed Jan 15, 2025
1 parent d6e54d5 commit 14dc281
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: make build-wasm

- name: Upload WASM wheel
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: pyxel-wasm-wheel-${{ github.run_id }}
name: pyxel-wasm-wheel
path: dist/*
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
run: make TARGET=${{ matrix.target }}

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: pyxel-wheels-${{ github.run_id }}
name: pyxel-wheels
path: dist/*

build-linux:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
make TARGET=${{ matrix.target }}
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: pyxel-wheels-${{ github.run_id }}
name: pyxel-wheels
path: dist/*
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
uses: actions/checkout@v3

- name: Download wheels
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: pyxel-wheels-${{ github.run_id }}
name: pyxel-wheels
path: dist

- name: Get Pyxel version
Expand Down
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

## 2.2.11

- Updated to upload-artifact@v4 with unique artifact names
- Fixed types in the pyi file
- Fixed an input issue in the sound editor
- Formatted sound strings in examples
Expand Down

0 comments on commit 14dc281

Please sign in to comment.