Try ESM #2
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: Build actions | |
on: | |
push: | |
branches: [main] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm ci | |
- run: npx rollup --config | |
- run: git config --global user.name 'github-actions[bot]' | |
- run: git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
- run: git add dist | |
- run: git commit --message 'Rebuild deploy action bundle' | |
- run: git push |