From 0ff7214bc38df8952bd85029291625c6547974a3 Mon Sep 17 00:00:00 2001 From: angiemccormick <35320862+angiemccormick@users.noreply.github.com> Date: Mon, 29 Aug 2022 10:09:56 -0400 Subject: [PATCH] Update deploy-pipeline.yaml --- .github/workflows/deploy-pipeline.yaml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-pipeline.yaml b/.github/workflows/deploy-pipeline.yaml index 678300fc6..ecc99410a 100644 --- a/.github/workflows/deploy-pipeline.yaml +++ b/.github/workflows/deploy-pipeline.yaml @@ -43,4 +43,17 @@ jobs: uses: actions/upload-artifact@v2 with: name: zipped-bundle - path: ${{ github.sha }}.zip \ No newline at end of file + path: ${{ github.sha }}.zip + publish: + runs-on: ubuntu latest + steps: + - name: create a release + uses: action/create-release@v1 + env: GITHUB_TOKEN: ${{ secrets_github.token }} + with: + tag_name: ${{ github.run_number }} + release_name: Release from ${{ github.run_number }} + body: New release for ${{ github.sha }}. Release notes on the documentation site + draft: false + prelease: false +