Reverting separate repository for deployment changes
All checks were successful
Deploy Blog to Folder / deploy (push) Successful in 1s

This commit is contained in:
2025-07-05 20:47:11 -04:00
parent 369b3e6617
commit ea4a4c805a

View File

@ -11,9 +11,15 @@ jobs:
steps: steps:
- name: Skip deployment if commit starts with "nodeploy" - name: Skip deployment if commit starts with "nodeploy"
uses: Cyper/GiteaActions/skip-if-commit-prefix@main id: skip_check
with: run: |
prefix: nodeploy 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
- name: Checkout code - name: Checkout code
if: env.should_deploy == 'true' if: env.should_deploy == 'true'