Skip to content

Improve CI/CD workflows (and support merge queues) (#76) #1

Improve CI/CD workflows (and support merge queues) (#76)

Improve CI/CD workflows (and support merge queues) (#76) #1

Workflow file for this run

name: Main Build
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-build
cancel-in-progress: false
jobs:
build_and_tag:
uses: ./.github/workflows/subworkflow-build.yml
secrets: inherit
with:
push-tag: true
permissions:
contents: write
pull-requests: read
release:
uses: ./.github/workflows/subworkflow-release.yml
secrets: inherit
needs: [build_and_tag]
permissions:
contents: write