From c6593f9ac218bfbf78a3e46d94e82205fd2b353f Mon Sep 17 00:00:00 2001 From: Sheikh Date: Fri, 19 Jan 2024 21:36:42 -0400 Subject: [PATCH] debug: disable change check to force rebuilding resume --- .github/workflows/resume.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/resume.yml b/.github/workflows/resume.yml index 6d2983b..b58871a 100644 --- a/.github/workflows/resume.yml +++ b/.github/workflows/resume.yml @@ -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