Skip to content

Commit 14e1e22

Browse files
committed
fix: release workflow for Git Updater compatibility
- Change tag pattern from v* to semver without prefix - Git Updater requires tags like 0.3.1, not v0.3.1 - Bump version to 0.3.1
1 parent 306c977 commit 14e1e22

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- '[0-9]+.[0-9]+.[0-9]+*'
77

88
permissions:
99
contents: write
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Get version from tag
3636
id: get_version
37-
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
37+
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
3838

3939
- name: Create plugin zip
4040
run: |

integration-features.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Integration Features
44
* Plugin URI: https://github.com/code-atlantic/integration-features
55
* Description: Gutenberg blocks for displaying integration features with tier badges, accordion descriptions, and group organization.
6-
* Version: 0.3.0
6+
* Version: 0.3.1
77
* Requires at least: 6.7
88
* Requires PHP: 7.4
99
* Author: Code Atlantic

0 commit comments

Comments
 (0)