chore(ci): improve error handling and push only ref
Some checks failed
Markdown linter / markdown-lint (push) Failing after 20s
Some checks failed
Markdown linter / markdown-lint (push) Failing after 20s
This commit is contained in:
parent
9280fb3553
commit
9882035ca4
2
.SRCINFO
2
.SRCINFO
@ -1,7 +1,7 @@
|
|||||||
pkgbase = mint-backgrounds
|
pkgbase = mint-backgrounds
|
||||||
pkgdesc = The backgrounds of Linux Mint
|
pkgdesc = The backgrounds of Linux Mint
|
||||||
pkgver = 1.8.0
|
pkgver = 1.8.0
|
||||||
pkgrel = 1
|
pkgrel = 2
|
||||||
arch = any
|
arch = any
|
||||||
license = Various
|
license = Various
|
||||||
depends = mint-backgrounds-helena
|
depends = mint-backgrounds-helena
|
||||||
|
@ -15,9 +15,11 @@ jobs:
|
|||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.2.2
|
- uses: actions/checkout@v4.2.2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
- name: Configure SSH client
|
- name: Configure SSH client
|
||||||
run: |
|
run: |
|
||||||
mkdir ~/.ssh
|
mkdir ~/.ssh || true
|
||||||
chmod 0700 ~/.ssh
|
chmod 0700 ~/.ssh
|
||||||
|
|
||||||
echo "${AUR_SSH_KEY}" | base64 --decode > ~/.ssh/id
|
echo "${AUR_SSH_KEY}" | base64 --decode > ~/.ssh/id
|
||||||
@ -30,7 +32,7 @@ jobs:
|
|||||||
EOF
|
EOF
|
||||||
- name: Push
|
- name: Push
|
||||||
run: |
|
run: |
|
||||||
git push ssh://aur@aur.archlinux.org/mint-backgrounds.git
|
git push ssh://aur@aur.archlinux.org/mint-backgrounds.git 'HEAD:refs/heads/master'
|
||||||
- name: Remove SSH client configuration
|
- name: Remove SSH client configuration
|
||||||
run: |
|
run: |
|
||||||
rm -rf ~/.ssh
|
rm -rf ~/.ssh
|
Loading…
x
Reference in New Issue
Block a user