Merge pull request #4701 from github/dependabot/bundler/dependencies-… #1033
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 and Publish Jekyll for GitHub Pages | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| permissions: | |
| pages: write | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📂 checkout | |
| uses: actions/[email protected] | |
| - name: 💎 setup ruby | |
| uses: ruby/setup-ruby@1a615958ad9d422dd932dc1d5823942ee002799f # v1.227.0 | |
| with: | |
| bundler-cache: true | |
| cache-version: 0 | |
| - name: 📄 setup pages | |
| id: pages | |
| uses: actions/[email protected] | |
| - name: 🔨 install dependencies & build site | |
| uses: actions/jekyll-build-pages@44a6e6beabd48582f863aeeb6cb2151cc1716697 # v1.0.13 | |
| - name: ⚡️ upload artifact | |
| uses: actions/[email protected] | |
| deploy: | |
| needs: build | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🚀 deploy | |
| id: deployment | |
| uses: actions/[email protected] |