Merge pull request #4970 from xLexip/copilot/add-description-image-li… #1187
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@ac793fdd38cc468a4dd57246fa9d0e868aba9085 # v1.270.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] |