Skip to content

Commit

Permalink
REL: 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinThoma committed Mar 3, 2024
1 parent f78a34a commit 236d271
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# CHANGELOG
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
main:
name: tag the commit
runs-on: ubuntu-latest
if: startsWith(github.event.head_commit.message, 'REL: ')
if: "startsWith(${{ github.event.head_commit.message}}, 'REL: ')"

steps:
- name: Checkout code
Expand All @@ -24,5 +24,7 @@ jobs:
- name: Create Git Tag
run: |
VERSION="${{ steps.extract_version.outputs.version }}"
git config --global user.email "action@github.com"
git config --global user.name "Github Action"
git tag "$VERSION" -m "${{ github.event.head_commit.message }}"
git push --tags
git push origin $VERSION

0 comments on commit 236d271

Please sign in to comment.