From 066d9ece8cc56cda50ab66d7118cc8337ccfc086 Mon Sep 17 00:00:00 2001 From: Neha Prakash <90040290+msnehaprakash@users.noreply.github.com> Date: Fri, 11 Aug 2023 19:20:54 +0100 Subject: [PATCH 1/2] 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..b9aa47b3a 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 release + uses: actions/create-release@v1 + env: + GITHUB: ${{ secrets.github_token }} + release_name: Release from ${{ secrets.run_number }} + body: New release for ${{ github.sha }}. Release notes on the documentation site + draft: false + prerelease: false + + From 34e48509c1c9ebb99a9c8eab22c1e98c887d5b80 Mon Sep 17 00:00:00 2001 From: Neha Prakash <90040290+msnehaprakash@users.noreply.github.com> Date: Fri, 11 Aug 2023 19:26:34 +0100 Subject: [PATCH 2/2] Update deploy-pipeline.yaml --- .github/workflows/deploy-pipeline.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-pipeline.yaml b/.github/workflows/deploy-pipeline.yaml index b9aa47b3a..ce13be546 100644 --- a/.github/workflows/deploy-pipeline.yaml +++ b/.github/workflows/deploy-pipeline.yaml @@ -51,7 +51,9 @@ jobs: uses: actions/create-release@v1 env: GITHUB: ${{ secrets.github_token }} - release_name: Release from ${{ secrets.run_number }} + 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 prerelease: false