build https://html-now.github.io/ #1309
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: build https://html-now.github.io/ | |
| on: | |
| schedule: | |
| - cron: '19 2 * * *' | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '19' | |
| - name: Run https://html-now.github.io/ build | |
| id: incoming | |
| run: | | |
| make -B | |
| - uses: crazy-max/ghaction-import-gpg@v5 | |
| with: | |
| gpg_private_key: ${{ secrets.GPG_SIGNING_KEY }} | |
| git_user_signingkey: true | |
| git_commit_gpgsign: true | |
| - name: Create pull request | |
| id: cpr | |
| uses: peter-evans/create-pull-request@v5 | |
| with: | |
| title: Update https://html-now.github.io/ | |
| commit-message: Update https://html-now.github.io/ | |
| committer: sideshowbarkerbot <sideshowbarker+sideshowbarkerbot@gmail.com> | |
| author: sideshowbarkerbot <sideshowbarker+sideshowbarkerbot@gmail.com> | |
| assignees: sideshowbarker | |
| reviewers: sideshowbarker | |
| branch: create-pull-request/patch-site | |
| delete-branch: true | |
| - name: Log pull request URL | |
| run: | | |
| echo "Pull request URL: ${{ steps.cpr.outputs.pull-request-url }}" |