Skip to content

Test release

Test release #6

Workflow file for this run

name: Release
on:
workflow_dispatch:
issues:
types: [ created, assigned, closed ]
jobs:
release:
if: (github.event.label.name == 'major' || github.event.label.name == 'minor' || github.event.label.name == 'patch') && github.event.milestone.name != ''
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Start release
run: echo "Start release of gateway"
call-base-release:
needs: release
uses: assimbly/base/.github/workflows/release.yml@develop
secrets: inherit
with:
branch: 'develop'
call-runtime-release:
needs: call-base-release
uses: assimbly/runtime/.github/workflows/release.yml@develop
secrets: inherit
with:
branch: 'develop'
call-custom-components-release:
needs: call-base-release
uses: assimbly/custom-components/.github/workflows/release.yml@develop
secrets: inherit
with:
branch: 'develop'