Skip to content

Release

Release #13

Workflow file for this run

on:
workflow_dispatch:
workflow_run:
workflows: [ Checks ]
types: [ completed]
branches: [ master ]
name: "Release"
jobs:
release-dev:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: ./.github/workflows/release_dev.yml
secrets: inherit
release-prod:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: release-dev
uses: ./.github/workflows/release_prod.yml
secrets: inherit