Skip to content

Bundle the actions, since it's apparently necessary #1

Bundle the actions, since it's apparently necessary

Bundle the actions, since it's apparently necessary #1

Workflow file for this run

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