diff --git a/.github/workflows/pwabuilder-main.yml b/.github/workflows/pwabuilder-main.yml index 4752241ee..212e4253f 100644 --- a/.github/workflows/pwabuilder-main.yml +++ b/.github/workflows/pwabuilder-main.yml @@ -67,6 +67,17 @@ jobs: skip_app_build: true # Skip building the app using the default build commands for the specified app framework - optional output_location: "" # Built app content directory - optional + generate_release: + runs-on: ubuntu-latest + name: Generate Release including changelog + steps: + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.CHANGELOG_TOKEN }}" + automatic_release_tag: "latest" + prerelease: false + title: "Production Build" + close_pull_request_job: if: github.event_name == 'pull_request' && github.event.action == 'closed' diff --git a/.github/workflows/pwabuilder-preview.yml b/.github/workflows/pwabuilder-preview.yml index bf69f2f8e..d1de3df6f 100644 --- a/.github/workflows/pwabuilder-preview.yml +++ b/.github/workflows/pwabuilder-preview.yml @@ -66,6 +66,17 @@ jobs: skip_app_build: true # Skip building the app using the default build commands for the specified app framework - optional output_location: "" # Built app content directory - optional + generate_release: + runs-on: ubuntu-latest + name: Generate Release including changelog + steps: + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.CHANGELOG_TOKEN }}" + automatic_release_tag: "latest" + prerelease: true + title: "Staging Build" + close_pull_request_job: if: github.event_name == 'pull_request' && github.event.action == 'closed'