We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4366ea commit 2736368Copy full SHA for 2736368
2 files changed
.github/workflows/auto_tag.yml
@@ -16,4 +16,4 @@ jobs:
16
tag_prefix: "v"
17
strategy: regex
18
root: "/lib/mx-platform-ruby/version.rb"
19
- regex_pattern: "[\d.]+"
+ regex_pattern: "[0-9\\.]+"
.github/workflows/github_release.yml
@@ -8,10 +8,12 @@ on:
8
jobs:
9
tagged-release:
10
name: "Tagged Release"
11
- runs-on: "ubuntu-latest"
12
-
+ runs-on: ubuntu-latest
13
steps:
14
- name: "Release"
+ run: |
15
+ echo "Tag Release!"
+
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.TAG_AND_RELEASE_TOKEN }}"
0 commit comments