Bump minimatch from 9.0.5 to 9.0.7 #78
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: Release Container | |
| # Based on https://vitepress.dev/guide/deploy#github-pages | |
| # Enables automatic publishing of the website to GitHub Pages from main branch. | |
| env: | |
| platforms: linux/amd64,linux/arm64 | |
| on: | |
| # run the workflow only for main branch or PRs | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| release: | |
| types: | |
| - released | |
| # Allows you to run this workflow manually from the Actions tab for debugging purposes | |
| workflow_dispatch: | |
| # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
| # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
| concurrency: | |
| group: container | |
| cancel-in-progress: false | |
| jobs: | |
| # Build job | |
| build-web: | |
| name: Build | |
| # Specify runner + deployment step | |
| runs-on: ubuntu-latest | |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| # Check out the branch | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| # Fix "Corepack must currently be enabled by running corepack enable in your terminal." | |
| - name: Enable Corepack | |
| run: corepack enable | |
| # Setup Node.js with yarn support | |
| - name: Setup Node | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 | |
| with: | |
| node-version: "lts/*" # Ensures the latest LTS version is used | |
| cache: yarn # npm / pnpm / yarn | |
| # Install javascript dependencies with yarn | |
| - name: Install dependencies | |
| run: yarn install # or pnpm install / yarn install / bun install | |
| # Build the website | |
| - name: Build with VitePress | |
| run: yarn run build # or pnpm docs:build / yarn docs:build / bun run docs:build | |
| # # Publish as container | |
| # publish-as-container: | |
| # permissions: | |
| # contents: read | |
| # packages: write | |
| # name: Build Container Image | |
| # runs-on: ubuntu-latest | |
| # # Add a dependency to the build job | |
| # needs: build-web | |
| # steps: | |
| - name: Log in to GHCR | |
| uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Collect metadata | |
| uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 | |
| id: meta | |
| with: | |
| images: | | |
| ghcr.io/${{ github.repository}} | |
| tags: | | |
| type=semver,pattern={{version}} | |
| type=ref,event=branch | |
| type=ref,event=tag | |
| type=ref,event=pr | |
| type=sha | |
| flavor: | | |
| latest=${{ startsWith(github.ref, 'refs/tags/') }} | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 | |
| with: | |
| platforms: ${{ env.platforms }} | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f | |
| - name: Build and push Docker image | |
| uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 | |
| with: | |
| context: . | |
| platforms: ${{ env.platforms }} | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| file: Containerfile | |
| push: true |