Merge pull request #386 from vshn/fix/sgconfigstatus #282
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: Release | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- name: Build changelog from PRs with labels | |
id: build_changelog | |
uses: mikepenz/release-changelog-builder-action@v4 | |
with: | |
configuration: ".github/changelog-configuration.json" | |
# PreReleases still get a changelog, but the next full release gets a diff since the last full release, | |
# combining possible changelogs of all previous PreReleases in between. | |
# PreReleases show a partial changelog since last PreRelease. | |
ignorePreReleases: "${{ !contains(github.ref, '-rc') }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
body: ${{steps.build_changelog.outputs.changelog}} | |
prerelease: "${{ contains(github.ref, '-rc') }}" | |
# Ensure target branch for release is "master" | |
commit: master | |
token: ${{ secrets.GITHUB_TOKEN }} | |
update-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: 'master' | |
token: ${{ secrets.GH_ACTION_PAT }} | |
- name: set tag env | |
run: echo "TAG_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Change version in package | |
run: | | |
yq -i '.parameters."pkg.appcat".componentVersion = "${{ env.TAG_VERSION }}"' package/main.yaml | |
- uses: actions-js/push@v1.4 | |
with: | |
github_token: ${{ secrets.GH_ACTION_PAT }} | |
message: "Update component version in package to ${{ env.TAG_VERSION }}" | |
branch: 'master' |