Skip to content

ci: add versioning workflow #1

ci: add versioning workflow

ci: add versioning workflow #1

Workflow file for this run

---
name: Versioning
on:
workflow_dispatch:
inputs:
version:
description: "Version"
required: true
jobs:
tag:
runs-on: ubuntu-latest
steps:
- name: Create Tag and Release
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"