Skip to content

[PoC] Introduce support for Pekko #1

[PoC] Introduce support for Pekko

[PoC] Introduce support for Pekko #1

Workflow file for this run

name: Publish GitHub Release
on:
push:
tags:
- 'v*'
jobs:
run-scala-ci-release:
uses: ./.github/workflows/standard-workflow.yml
secrets: inherit
publish-github-release:
needs: [run-scala-ci-release]
if: github.event.base_ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
# Publishes new Release as new git tag (vX.Y.Z) is pushed to repository
- uses: release-drafter/release-drafter@v5
with:
config-name: publish-release-config.yml
publish: true
tag: ${{ github.ref_name }}
name: ${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}