Skip to content

Commit 2736368

Browse files
committed
Update tag and release workflows
Update the regex in the tagging workflow and add a `run` command to the release workflow.
1 parent a4366ea commit 2736368

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/auto_tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
tag_prefix: "v"
1717
strategy: regex
1818
root: "/lib/mx-platform-ruby/version.rb"
19-
regex_pattern: "[\d.]+"
19+
regex_pattern: "[0-9\\.]+"

.github/workflows/github_release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ on:
88
jobs:
99
tagged-release:
1010
name: "Tagged Release"
11-
runs-on: "ubuntu-latest"
12-
11+
runs-on: ubuntu-latest
1312
steps:
1413
- name: "Release"
14+
run: |
15+
echo "Tag Release!"
16+
1517
- uses: "marvinpinto/action-automatic-releases@latest"
1618
with:
1719
repo_token: "${{ secrets.TAG_AND_RELEASE_TOKEN }}"

0 commit comments

Comments
 (0)