nodeploy: Switched to action repo
Some checks failed
Deploy Blog to Folder / deploy (push) Failing after 0s

This commit is contained in:
2025-06-20 17:23:21 -04:00
parent 8ffd4bf130
commit 75b67b2c14

View File

@ -11,15 +11,9 @@ jobs:
steps:
- name: Skip deployment if commit starts with "nodeploy"
id: skip_check
run: |
COMMIT_MSG="${{ event.head_commit.message }}"
echo "Commit message: $COMMIT_MSG"
if [[ "$COMMIT_MSG" == nodeploy* ]]; then
echo "should_deploy=false" >> $GITHUB_ENV
else
echo "should_deploy=true" >> $GITHUB_ENV
fi
uses: Cyper/GiteaActions/skip-if-commit-prefix@main
with:
prefix: nodeploy
- name: Checkout code
if: env.should_deploy == 'true'