Skip to content

Commit

Permalink
Publish DAS workflow (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
levisingularity authored Mar 28, 2024
1 parent a972de6 commit ef90690
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Publish DAS

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

jobs:
tag:
needs: build
if: github.ref == 'refs/heads/master'
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: /^\d+\.\d+\.\d+$/
version-require-confirmation: "true"
secrets: inherit

0 comments on commit ef90690

Please sign in to comment.