We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f6e818 commit afab34dCopy full SHA for afab34d
.github/workflows/release.yml
@@ -113,11 +113,14 @@ jobs:
113
114
- name: create arch package (ubuntu only)
115
if: matrix.platform == 'ubuntu-22.04'
116
- uses: 2m/arch-pkgbuild-builder@v1.17
117
- with:
118
- debug: true
119
- target: pkgbuild
120
- pkgname: ${{ needs.setup.outputs.name_bin }}/
+ run: |
+ docker run --rm -v "$PWD/${{ needs.setup.outputs.name_bin }}:/pkg" archlinux:latest bash -c "
+ pacman -Sy --noconfirm base-devel sudo &&
+ useradd -m builder &&
+ chown -R builder: /pkg &&
121
+ cd /pkg &&
122
+ sudo -u builder makepkg -f
123
+ "
124
125
- name: upload arch && rpm release (ubuntu only)
126
0 commit comments