get.porter.sh/porter@v1.3.0/.github/workflows/porter-release.yml (about)

     1  name: porter/porter-release
     2  on:
     3    push:
     4      tags:
     5      - v*
     6      - "!latest*"
     7      - "!canary*"
     8  
     9  # This configuration ensures that multiple releases don't run at the same time:
    10  # - The 'group' combines the workflow name and git reference to create a unique identifier
    11  # - 'cancel-in-progress: false' means if a new release is triggered, it will wait in line
    12  #   instead of canceling any running release
    13  concurrency:
    14    group: ${{ github.workflow }}-${{ github.ref }}
    15    cancel-in-progress: false
    16  
    17  jobs:
    18    build_pipelinesrelease_template:
    19      name: build_pipelinesrelease_template
    20      uses: "./.github/workflows/build_pipelinesrelease_template.yml"
    21      with:
    22        registry: ghcr.io/getporter
    23        shouldPublish: true
    24        skipTests: false
    25      secrets: inherit