mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
ci: don't fail when no changes
This commit is contained in:
parent
2a585e8d5d
commit
7167966280
1 changed files with 5 additions and 2 deletions
7
.github/workflows/main.yml
vendored
7
.github/workflows/main.yml
vendored
|
|
@ -78,6 +78,9 @@ jobs:
|
||||||
DEPLOY_SSH: ${{ secrets.DEPLOY_SSH }}
|
DEPLOY_SSH: ${{ secrets.DEPLOY_SSH }}
|
||||||
GIT_SSH_COMMAND: "ssh -o StrictHostKeyChecking=no"
|
GIT_SSH_COMMAND: "ssh -o StrictHostKeyChecking=no"
|
||||||
run: |
|
run: |
|
||||||
|
ls -lah
|
||||||
|
ls -lah stg/
|
||||||
|
|
||||||
eval "$(ssh-agent -s)"
|
eval "$(ssh-agent -s)"
|
||||||
ssh-add - <<< "${DEPLOY_SSH}"
|
ssh-add - <<< "${DEPLOY_SSH}"
|
||||||
|
|
||||||
|
|
@ -85,6 +88,6 @@ jobs:
|
||||||
git config --global user.email "actions@github.com"
|
git config --global user.email "actions@github.com"
|
||||||
|
|
||||||
git add .
|
git add .
|
||||||
git commit -m "[CI] Update staging"
|
git commit -m "[CI] Update staging" || true
|
||||||
|
|
||||||
git push origin master
|
git push origin master || true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue