Compare commits

...

2 Commits

Author SHA1 Message Date
Michael Legleux
19d3d432c0 only digits for X.Y, catch b|rc for Z 2026-03-17 09:32:36 -07:00
Michael Legleux
a053faa6b0 fix: use correct format and event for workflows for tag 2026-03-17 09:32:36 -07:00
2 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ name: Tag
on:
push:
tags:
- "v*"
- "[0-9]+.[0-9]+.[0-9]*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@@ -89,10 +89,10 @@ jobs:
conan export . --version=rc
conan upload --confirm --check --remote="${REMOTE_NAME}" xrpl/rc
# When this workflow is triggered by a tag event, it will always be when tagging a final
# When this workflow is triggered by a push event, it will always be when tagging a final
# release, see on-tag.yml.
- name: Upload Conan recipe (release)
if: ${{ github.event_name == 'tag' }}
if: startsWith(github.ref, 'refs/tags/')
env:
REMOTE_NAME: ${{ inputs.remote_name }}
run: |