From ccfa5db2c19a00aa2fdf65586b4fe2ddd34b178a Mon Sep 17 00:00:00 2001 From: udaykumar-26 Date: Wed, 26 Feb 2025 19:15:46 +0530 Subject: [PATCH] Update deploy-pipeline.yaml --- .github/workflows/deploy-pipeline.yaml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-pipeline.yaml b/.github/workflows/deploy-pipeline.yaml index 678300fc6..3425e321e 100644 --- a/.github/workflows/deploy-pipeline.yaml +++ b/.github/workflows/deploy-pipeline.yaml @@ -42,5 +42,19 @@ jobs: - name: Archive artifact uses: actions/upload-artifact@v2 with: + publish: + runs-on: ubuntu-latest + steps: + - name: Create release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.github_token }} # This token is provided by Actions, you do not need to create your own token + with: + tag_name: ${{ github.run_number }} + release_name: Release ${{ github.run_number }} + body: New release for ${{ github.sha }}. Release notes can be found in the docs. + draft: false + prerelease: false name: zipped-bundle - path: ${{ github.sha }}.zip \ No newline at end of file + path: ${{ github.sha }}.zip