update gtkcord4
All checks were successful
Release xbps for amd64 / compilation-amd64 (push) Successful in 18m43s
All checks were successful
Release xbps for amd64 / compilation-amd64 (push) Successful in 18m43s
This commit is contained in:
parent
799e91c1f7
commit
47061ae6bb
2 changed files with 8 additions and 4 deletions
|
|
@ -25,7 +25,7 @@ jobs:
|
|||
xbps-install -Su -y
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Compile in sequence and upload
|
||||
- name: Set up worktree
|
||||
run: |
|
||||
echo "user_allow_other" >> /etc/fuse.conf
|
||||
groupadd -g 1001 runner
|
||||
|
|
@ -37,8 +37,12 @@ jobs:
|
|||
su - runner -c 'cp -r srcpkgs/* void-packages/srcpkgs'
|
||||
su - runner -c 'cd void-packages && echo "repository=https://static.itmodulo.eu/dl/repo/void" >> etc/xbps.d/repos-remote.conf && cp /var/db/xbps/keys/0e\:7e\:cc\:e6\:2b\:a7\:7b\:ee\:31\:33\:5c\:5d\:35\:be\:43\:64.plist masterdir-x86_64/var/db/xbps/keys'
|
||||
su - runner -c 'cat shlibs_local >> void-packages/common/shlibs'
|
||||
- name: Compile in sequence
|
||||
run: |
|
||||
su - runner -c 'cd void-packages && for i in $(ls ../srcpkgs/ | grep -v "\-doc" | grep -v "\-devel" | grep -v "lv2\-rnnoise" | grep -v "lxvst\-rnnoise" | grep -v "vst3\-rnnoise") ; do ./xbps-src pkg $i; done'
|
||||
rm /home/runner/void-packages/hostdir/binpkgs/x86_64-repodata
|
||||
- name: Mount repo, sign and upload packages
|
||||
run: |
|
||||
su - runner -c 'mkdir hole'
|
||||
echo "${{ secrets.REPO_LOGIN }}" > /home/runner/id_ecdsa && chown runner:runner /home/runner/id_ecdsa && chmod 600 /home/runner/id_ecdsa
|
||||
su - runner -c 'sshfs -p "${{ secrets.LOGIN_PORT }}" -o StrictHostKeyChecking=accept-new -o default_permissions,allow_other -o IdentityFile=/home/runner/id_ecdsa "${{ secrets.SERVER_LOGIN_AND_ADDRESS }}":"${{ secrets.SERVER_REPO_PATH }}" /home/runner/hole'
|
||||
|
|
|
|||
Reference in a new issue