0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-22 22:18:23 -05:00
websurfx/.github/workflows/release.yml

51 lines
1.4 KiB
YAML
Raw Normal View History

name: Bump release version
on:
pull_request:
branches: [rolling]
types:
- closed
permissions:
contents: write
concurrency: production
jobs:
build:
2024-01-28 09:30:32 -05:00
name: bump tag version and release
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout code
2024-01-28 09:30:32 -05:00
uses: actions/checkout@v3
with:
ref: ${{ github.sha }} ## this seems to be required due to https://github.com/anothrNick/github-tag-action/issues/266
fetch-depth: 0
- name: 'Automated Version Bump'
id: version-bump
2024-01-28 02:27:59 -05:00
uses: anothrNick/github-tag-action@1.36.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2024-01-28 02:27:59 -05:00
WITH_V: true
DEFAULT_BUMP: patch
PRERELEASE: false
RELEASE_BRANCHES: rolling
DEFAULT_BRANCH: rolling
pre_release: false
- name: Changelog
uses: scottbrenner/generate-changelog-action@master
id: Changelog
env:
REPO: ${{ github.repository }}
- name: Create Release
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
generate_release_notes: true
name: ${{ steps.version-bump.outputs.new_tag }}
2024-01-28 02:27:59 -05:00
tag_name: ${{ steps.version-bump.outputs.new_tag }}
prerelease: false
env:
2024-01-28 09:30:32 -05:00
GITHUB_REPOSITORY: ${{ github.repository }}