Refactor build process in workflow to ensure temporary files are handled correctly
This commit is contained in:
parent
7b2cd44fcb
commit
d1e77eaeb9
1 changed files with 4 additions and 1 deletions
|
@ -13,8 +13,11 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Build package
|
- name: Build package
|
||||||
run: |
|
run: |
|
||||||
|
cp PKGBUILD /tmp
|
||||||
|
pushd /tmp
|
||||||
makepkg -fC --syncdeps --noconfirm
|
makepkg -fC --syncdeps --noconfirm
|
||||||
cp *.pkg.tar.zst hasspy.pkg.tar.zst
|
popd
|
||||||
|
cp /tmp/*.pkg.tar.zst hasspy.pkg.tar.zst
|
||||||
- name: Push package
|
- name: Push package
|
||||||
run: |
|
run: |
|
||||||
curl -X PUT \
|
curl -X PUT \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue