Skip to content

Commit 66a0d50

Browse files
committed
chore: Try again with making Arch Linux package
1 parent dab355f commit 66a0d50

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/release-please.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,19 @@ jobs:
2121
include-v-in-tag: false
2222
- uses: actions/checkout@v4
2323
if: ${{ steps.release.outputs.release_created }}
24-
- name: Upload Release Artifacts
24+
- name: Build and Upload Debian Package
2525
if: ${{ steps.release.outputs.release_created }}
2626
env:
2727
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2828
run: |
2929
git fetch --all # required to make 'git describe' work
3030
make builddeb
31-
#sudo add-apt-repository universe
32-
#sudo apt update
33-
#sudo apt install makepkg
34-
#make buildarch
3531
gh release upload ${{ steps.release.outputs.tag_name }} *.deb
36-
#gh release upload ${{ steps.release.outputs.tag_name }} *.zst
32+
- name: Build Archlinux package
33+
uses: mijailr/arch-makepkg-action@v1
34+
- name: Upload Archlinux package
35+
if: ${{ steps.release.outputs.release_created }}
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
run: |
39+
gh release upload ${{ steps.release.outputs.tag_name }} *.pkg.tar.zst

0 commit comments

Comments
 (0)