Bump brace-expansion from 2.0.1 to 2.0.2 in /toolbar-app #47
Workflow file for this run
This file contains hidden or 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: Deploy Toolbar Reference Page | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| types: | |
| - labeled | |
| - synchronize | |
| jobs: | |
| deploy-reference-page: | |
| if: contains(github.event.pull_request.labels.*.name, 'Toolbar') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22.4 | |
| - name: Install dependencies | |
| working-directory: ./toolbar-app | |
| run: | | |
| node -v | |
| npm -v | |
| npm install | |
| - name: Run build | |
| working-directory: ./toolbar-app | |
| run: | | |
| npm run build | |
| - name: Deploy to GitHub Pages | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: "./toolbar-app/dist" | |
| publish_branch: gh_pages | |
| destination_dir: "./toolbar-app/" | |
| - name: Leave comment on PR | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| await github.rest.issues.createComment({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body: 'The reference page has been updated: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/toolbar-app/' | |
| }); |