diff options
| author | 2026-02-24 17:30:35 +0800 | |
|---|---|---|
| committer | 2026-02-24 17:30:35 +0800 | |
| commit | 940fee641d81a08e6429866211ce7d240d41bb80 (patch) | |
| tree | f6437d75be520ff15f7a97b665dd257331c6c6b2 /.github/workflows/publish-aur.yml | |
| parent | 7367833fc41da802cd2bb99c86bbc9898ad4d211 (diff) | |
| download | soon-940fee641d81a08e6429866211ce7d240d41bb80.tar.gz soon-940fee641d81a08e6429866211ce7d240d41bb80.zip | |
Update publish-aur.yml
Diffstat (limited to '.github/workflows/publish-aur.yml')
| -rw-r--r-- | .github/workflows/publish-aur.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/publish-aur.yml b/.github/workflows/publish-aur.yml index ba8f902..12891d3 100644 --- a/.github/workflows/publish-aur.yml +++ b/.github/workflows/publish-aur.yml @@ -45,7 +45,7 @@ - name: Prepare PKGBUILD and .SRCINFO run: | - cd $GITHUB_WORKSPACE + cd $GITHUB_WORKSPACE/aur if [ "${{ github.event_name }}" = "workflow_dispatch" ] && [ -n "${{ github.event.inputs.tag }}" ]; then TAG="${{ github.event.inputs.tag }}" else @@ -57,7 +57,7 @@ - name: Push to AUR run: | - cd $GITHUB_WORKSPACE + cd $GITHUB_WORKSPACE/aur rm -rf pkg src GIT_SSH_COMMAND="ssh -i ~/.ssh/id_ed25519 -o UserKnownHostsFile=~/.ssh/known_hosts" git clone ssh://aur@aur.archlinux.org/soon.git aur-push cp PKGBUILD .SRCINFO README* LICENSE* aur-push/ 2>/dev/null || true |