Merge pull request #36 from joutvhu/develop #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rebuild Changes | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install packages | |
run: npm ci | |
- name: Rebuild | |
run: npm run release | |
- name: Check change status | |
id: check_status | |
run: | | |
git status -s | |
echo "::set-output name=changed::$(git status -s | grep -q 'action/index.js' && echo 'true' || echo 'false')" | |
- name: Push new action/index.js | |
if: ${{ steps.check_status.outputs.changed == 'true' }} | |
run: | | |
git config --global user.name "GitHub" | |
git config --global user.email "[email protected]" | |
git commit -m "Rebuild action/index.js" --author="github-actions[bot] <github-actions[bot]@users.noreply.github.com>" | |
git push origin |