Skip to content

Commit

Permalink
debug: disable change check to force rebuilding resume
Browse files Browse the repository at this point in the history
  • Loading branch information
cybardev authored Jan 20, 2024
1 parent 5eb8ff6 commit c6593f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/resume.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
FILE_CHANGED=$(git diff-tree --no-commit-id --name-only -r ${{ github.sha }} ./assets/Resume_*.md)
echo "changed=${FILE_CHANGED}" >> "${GITHUB_OUTPUT}"
- name: Commit changes
if: endsWith(steps.check_updates.outputs.changed, '.md')
# FIXME: if: endsWith(steps.check_updates.outputs.changed, '.md')
run: |
git config --local user.name "github-actions[bot]"
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git commit -a -m "pipeline: update resume"
- name: Upload resume files
if: endsWith(steps.check_updates.outputs.changed, '.md')
# FIXME: if: endsWith(steps.check_updates.outputs.changed, '.md')
uses: ad-m/github-push-action@master
with:
branch: main
Expand Down

0 comments on commit c6593f9

Please sign in to comment.