chore: add test on latest stable to nightly build #92
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Github Release | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- closed | |
jobs: | |
create-tag: | |
runs-on: ubuntu-latest | |
if: (github.event.pull_request.merged && contains( github.event.pull_request.labels.*.name, 'autorelease')) | |
permissions: | |
contents: write | |
outputs: | |
tag_name: ${{ steps.read-changelog.outputs.version }} | |
steps: | |
- name: Generate Token for sbb-app-bakery GH App | |
id: app-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ vars.APPBAKERYGITHUBAPP_APPID }} | |
private-key: ${{ secrets.APPBAKERYGITHUBAPP_PRIVATEKEY }} | |
- name: Clone Repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
persist-credentials: false | |
- name: Changelog Reader | |
id: read-changelog | |
uses: mindsers/[email protected] | |
- name: Create release tag | |
uses: rickstaa/[email protected] | |
with: | |
github_token: ${{ steps.app-token.outputs.token }} | |
tag: ${{ steps.read-changelog.outputs.version }} | |
message: "Version Release ${{ steps.read-changelog.outputs.version }} on ${{ steps.read-changelog.outputs.date }}" | |
- name: Create GitHub Releases based on changelog | |
uses: taiki-e/[email protected] | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
ref: refs/tags/${{ steps.read-changelog.outputs.version }} | |
changelog: ./CHANGELOG.md |