Skip to content

feat: Use custom container for package builds #105

feat: Use custom container for package builds

feat: Use custom container for package builds #105

Workflow file for this run

name: CI
on:
push:
jobs:
checks:
uses: ./.github/workflows/checks.yml
build:
uses: ./.github/workflows/build.yml
secrets: inherit
deploy:
needs: ["build"]
uses: ./.github/workflows/deploy.yml
secrets: inherit
release:
if: startsWith(github.ref, 'refs/tags/v')
needs: ["build"]
uses: ./.github/workflows/release.yml
secrets: inherit