Skip to content

Test release

Test release #10

Workflow file for this run

name: Release
on:
workflow_dispatch:
issues:
types: [ created, assigned, closed ]
jobs:
dump_contexts_to_log:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
id: github_context_step
run: echo '${{ toJSON(github) }}'
release:
if: github.event.label.name == 'major'
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'