diff --git a/.github/workflows/release-creator.yml b/.github/workflows/release-creator.yml new file mode 100644 index 0000000..b10c687 --- /dev/null +++ b/.github/workflows/release-creator.yml @@ -0,0 +1,21 @@ +name: Release Creator + +on: + release: + types: [published] + +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_ACCESS_TOKEN }} + DESTINATION_REPO: WireJunky-Solutions/ExtraLifeStreamLabels + +jobs: + release-publish: + name: Release Publish + runs-on: ubuntu-latest + steps: + - uses: alice-biometrics/release-creator@v1.0.3 + with: + GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }} + version: 'inherit' + description: 'inherit' + repo: ${{ env.DESTINATION_REPO }}