chore: link major version branch to v1 #633
This file contains 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 Docker Image Degit 📁 | |
on: | |
push: | |
branches: | |
- '**' | |
- '!master' | |
tags: | |
- '**' | |
paths: | |
- .github/kontinuousVersion | |
- packages/degit | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.event.ref }} | |
jobs: | |
build-base-images: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build image | |
uses: ./.github/actions/build-images | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
dockerfile: packages/degit/Dockerfile | |
destination: /degit | |