diff --git a/.github/workflows/deploy-pipeline.yaml b/.github/workflows/deploy-pipeline.yaml index 678300fc6..664276ee7 100644 --- a/.github/workflows/deploy-pipeline.yaml +++ b/.github/workflows/deploy-pipeline.yaml @@ -43,4 +43,18 @@ 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: ${{ secret.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 +