This repository has been archived by the owner on Feb 15, 2024. It is now read-only.
feat: upgrade version service client (#132) #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Autotag | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
autotag: | |
name: Create tag if version changes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
# Extract version data and create tag | |
- uses: butlerlogic/[email protected] | |
env: | |
GITHUB_TOKEN: "${{ secrets.AUTOTAG_TOKEN }}" | |
with: | |
strategy: regex | |
root: "VERSION" | |
regex_pattern: "(.*)" | |
tag_prefix: "v" |