Fixing up more locations of the old tag naming style

This commit is contained in:
Trenton Holmes 2022-04-28 13:44:37 -07:00 committed by Trenton Holmes
parent dce4166bc8
commit b9a2652013
2 changed files with 9 additions and 9 deletions

View File

@ -30,7 +30,6 @@ replacers: # Changes "Feature: Update checker" to "Update checker"
replace: '' replace: ''
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&#@' change-title-escapes: '\<*_&#@'
tag-prefix: "ngx-"
template: | template: |
# Changelog # Changelog

View File

@ -3,8 +3,9 @@ name: ci
on: on:
push: push:
tags: tags:
- ngx-* - 'v[0-9]+.[0-9]+.[0-9]+'
- beta-* - 'v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+'
- 'beta-[0-9]+.[0-9]+.[0-9]+-rc[0-9]+'
branches-ignore: branches-ignore:
- 'translations**' - 'translations**'
pull_request: pull_request:
@ -53,7 +54,7 @@ jobs:
prepare-docker-build: prepare-docker-build:
name: Prepare Docker Pipeline Data name: Prepare Docker Pipeline Data
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/heads/feature-') || github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/beta' || startsWith(github.ref, 'refs/tags/ngx-') || startsWith(github.ref, 'refs/tags/beta-')) if: github.event_name == 'push' && (startsWith(github.ref, 'refs/heads/feature-') || github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/beta' || startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/tags/beta-'))
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
needs: needs:
- documentation - documentation
@ -388,7 +389,7 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
needs: needs:
- build-release - build-release
if: github.ref_type == 'tag' && (startsWith(github.ref_name, 'ngx-') || startsWith(github.ref_name, 'beta-')) if: github.ref_type == 'tag' && (startsWith(github.ref_name, 'v') || startsWith(github.ref_name, 'beta-'))
steps: steps:
- -
name: Download release artifact name: Download release artifact
@ -400,11 +401,11 @@ jobs:
name: Get version name: Get version
id: get_version id: get_version
run: | run: |
if [[ $GITHUB_REF == refs/tags/ngx-* ]]; then if [[ $GITHUB_REF == refs/tags/v* ]]; then
echo ::set-output name=version::${GITHUB_REF#refs/tags/ngx-} echo ::set-output name=version::${{ github.ref_name }}
echo ::set-output name=prerelease::false echo ::set-output name=prerelease::false
elif [[ $GITHUB_REF == refs/tags/beta-* ]]; then elif [[ $GITHUB_REF == refs/tags/beta-* ]]; then
echo ::set-output name=version::${GITHUB_REF#refs/tags/beta-} echo ::set-output name=version::${{ github.ref_name }}
echo ::set-output name=prerelease::true echo ::set-output name=prerelease::true
fi fi
- -
@ -413,7 +414,7 @@ jobs:
uses: release-drafter/release-drafter@v5 uses: release-drafter/release-drafter@v5
with: with:
name: Paperless-ngx ${{ steps.get_version.outputs.version }} name: Paperless-ngx ${{ steps.get_version.outputs.version }}
tag: ngx-${{ steps.get_version.outputs.version }} tag: ${{ steps.get_version.outputs.version }}
version: ${{ steps.get_version.outputs.version }} version: ${{ steps.get_version.outputs.version }}
prerelease: ${{ steps.get_version.outputs.prerelease }} prerelease: ${{ steps.get_version.outputs.prerelease }}
publish: true # ensures release is not marked as draft publish: true # ensures release is not marked as draft