Skip to content

Commit 51d254f

Browse files
committed
fix: Properly upload artifact
1 parent 7522ac8 commit 51d254f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ jobs:
9393
sudo rm /tmp/python-build/bin/pip3.11
9494
sudo rm /tmp/python-build/bin/2to3-3.11
9595

96+
cd /tmp
97+
sudo tar -czf python-3.11.8-32-bit.tar.gz ./python-build
98+
9699
- name: Upload Python 3.11.8 (32-bit) artifact
97100
uses: actions/upload-artifact@v4
98101
with:

.releaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{
99
"path": "@semantic-release/github",
1010
"assets": [
11-
"/home/runner/python-3.11.8-32-bit.tar.gz"
11+
"/tmp/python-3.11.8-32-bit.tar.gz"
1212
]
1313
}
1414
]

PKGBUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
pkgname=python-i686-bin
22
pkgdesc="Major release 3.11 of the Python high-level programming language (32-bit)"
33
pkgver=3.11.8
4-
pkgrel=3
4+
pkgrel=4
55
arch=('x86_64')
66
url="https://www.python.org/"
77
license=('PSF-2.0')
88
options=('!debug')
99
depends=('glibc' 'zlib' 'bzip2' 'openssl' 'libffi')
10-
source=("https://github.com/shdwmtr/pybuilder/releases/download/v1.0.5/python-3.11.8-32-bit.tar.gz")
10+
source=("https://github.com/shdwmtr/pybuilder/releases/download/v1.0.6/python-3.11.8-32-bit.tar.gz")
1111
sha256sums=('10af38d15eefc7ea55cc794444dfcf456e38f0f2883dc8e168ccc7d44555abfc')
1212

1313
package() {

0 commit comments

Comments
 (0)