Skip to content

Test release

Test release #13

Workflow file for this run

name: Release
on:
workflow_dispatch:
issues:
types: [ created, assigned, closed ]
jobs:
release:
if: |
(contains(github.event.issue.labels.*.name, 'major') ||
contains(github.event.issue.labels.*.name, 'minor') ||
contains(github.event.issue.labels.*.name, 'patch')) &&
github.event.issue.milestone.title != ''
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'