Skip to content

Commit

Permalink
Merge pull request #3 from singnet/rl/version-tagging
Browse files Browse the repository at this point in the history
feat: add version tagging
  • Loading branch information
levisingularity authored Sep 21, 2023
2 parents 27684dc + bbd988c commit fb477ed
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/version-tagging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Version Tagging

on:
workflow_dispatch:
inputs:
version:
description: "Version to tag"
required: true

jobs:
tag:
uses: singnet/das-scripts-pipeline/.github/workflows/action.yml@master
with:
version: ${{ github.event.inputs.version }}
version-strategy: bump-version-from-variable-value
job-image-namespace: trueagi
job-image-version-semver: semantic-versioning
main-branch: master
version-tag-regex-pattern: /^v\d+\.\d+\.\d+$/
version-require-confirmation: "true"

0 comments on commit fb477ed

Please sign in to comment.