From 213587a3f71381f87e5c834c90f14e708519bef4 Mon Sep 17 00:00:00 2001 From: GeeklyZ <101790869+GeeklyZ@users.noreply.github.com> Date: Tue, 5 Mar 2024 15:08:17 +0200 Subject: [PATCH] Update deploy-pipeline.yaml --- .github/workflows/deploy-pipeline.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-pipeline.yaml b/.github/workflows/deploy-pipeline.yaml index 678300fc6..95f894faf 100644 --- a/.github/workflows/deploy-pipeline.yaml +++ b/.github/workflows/deploy-pipeline.yaml @@ -43,4 +43,19 @@ 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_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 documentation site + draft: false + prerelease: false +