From 0604948ef5b1bd4987f64da904e0899b8b03682f Mon Sep 17 00:00:00 2001 From: WireJunky42 Date: Thu, 16 Apr 2020 15:37:30 -0400 Subject: [PATCH] Create release-creator.yml --- .github/workflows/release-creator.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/release-creator.yml 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 }}