Skip to content

Commit 14dc281

Browse files
committed
Restored the upload-artifact
1 parent d6e54d5 commit 14dc281

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/build-wasm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: make build-wasm
3939

4040
- name: Upload WASM wheel
41-
uses: actions/upload-artifact@v4
41+
uses: actions/upload-artifact@v3
4242
with:
43-
name: pyxel-wasm-wheel-${{ github.run_id }}
43+
name: pyxel-wasm-wheel
4444
path: dist/*

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ jobs:
5353
run: make TARGET=${{ matrix.target }}
5454

5555
- name: Upload wheels
56-
uses: actions/upload-artifact@v4
56+
uses: actions/upload-artifact@v3
5757
with:
58-
name: pyxel-wheels-${{ github.run_id }}
58+
name: pyxel-wheels
5959
path: dist/*
6060

6161
build-linux:
@@ -126,7 +126,7 @@ jobs:
126126
make TARGET=${{ matrix.target }}
127127
128128
- name: Upload wheels
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@v3
130130
with:
131-
name: pyxel-wheels-${{ github.run_id }}
131+
name: pyxel-wheels
132132
path: dist/*

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
uses: actions/checkout@v3
1818

1919
- name: Download wheels
20-
uses: actions/download-artifact@v4
20+
uses: actions/download-artifact@v3
2121
with:
22-
name: pyxel-wheels-${{ github.run_id }}
22+
name: pyxel-wheels
2323
path: dist
2424

2525
- name: Get Pyxel version

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
## 2.2.11
44

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

0 commit comments

Comments
 (0)