build(deps): bump third-party/beautiful-jekyll from aa04ec4 to 6f1173d
#512
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: Jekyll CI | |
| permissions: {} | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.ref }}" | |
| cancel-in-progress: true | |
| jobs: | |
| call-jekyll-build: | |
| uses: ./.github/workflows/jekyll-build.yml | |
| permissions: | |
| contents: read | |
| secrets: | |
| GH_BOT_EMAIL: ${{ secrets.GH_BOT_EMAIL }} | |
| GH_BOT_TOKEN: ${{ secrets.GH_BOT_TOKEN }} | |
| with: | |
| clean_gh_pages: true | |
| gh_bot_name: ${{ vars.GH_BOT_NAME }} | |
| target_branch: gh-pages | |
| release: | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
| permissions: | |
| contents: write # needed for setup-release-action | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Release | |
| id: setup-release | |
| uses: LizardByte/actions/actions/release_setup@25babf9f2e9f088145ba488339c78c4df9394fc7 # v2026.524.145234 | |
| with: | |
| github_token: ${{ secrets.GH_BOT_TOKEN }} | |
| - name: Create Release | |
| id: action | |
| uses: LizardByte/actions/actions/release_create@25babf9f2e9f088145ba488339c78c4df9394fc7 # v2026.524.145234 | |
| with: | |
| allowUpdates: false | |
| artifacts: '' | |
| body: ${{ steps.setup-release.outputs.release_body }} | |
| draft: true | |
| generateReleaseNotes: ${{ steps.setup-release.outputs.release_generate_release_notes }} | |
| name: ${{ steps.setup-release.outputs.release_tag }} | |
| prerelease: true | |
| tag: ${{ steps.setup-release.outputs.release_tag }} | |
| token: ${{ secrets.GH_BOT_TOKEN }} |