There was an error while loading. Please reload this page.
1 parent 66d0b8a commit fc4282bCopy full SHA for fc4282b
1 file changed
.github/workflows/staging.yml
@@ -85,12 +85,13 @@ jobs:
85
86
# Copy updated PKGBUILD from original repo
87
cp $GITHUB_WORKSPACE/openssh-gui-git/PKGBUILD .
88
-
89
- # Configure git
+
+ docker run --rm -v "$(pwd)":/pkg -w /pkg archlinux:latest \
90
+ bash -c "pacman -Sy --noconfirm --needed pacman && makepkg --printsrcinfo > .SRCINFO"
91
92
git config user.name "${{ github.repository_owner }}"
93
git config user.email "${{ github.repository_owner }}@users.noreply.github.com"
- # Commit and push
94
- git add PKGBUILD
95
+ git add PKGBUILD .SRCINFO
96
git commit -m "Development update ${{ needs.prepare.outputs.tag }}" || true
97
git push origin master
0 commit comments