Skip to content

Commit

Permalink
Merge pull request #179 from lalithkota/17.0-1.2
Browse files Browse the repository at this point in the history
Github Action Tag: Added
  • Loading branch information
pjoshi751 committed Sep 3, 2024
2 parents 95b21ab + c9aec49 commit d5bfbdd
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tag the repo
on:
workflow_call:
inputs:
new-tag:
description: Tag in "vN.N.N" format
required: true
type: string
previous-tag:
description: Previous tag. "None" if no previous tag
required: true
type: string
default: latest
jobs:
tag-repo:
uses: openg2p/openg2p-packaging/.github/workflows/tag.yml@main
with:
new-tag: ${{ inputs.new-tag }}
previous-tag: ${{ inputs.previous-tag }}
secrets:
OPENG2P_BOT_GITHUB_PAT: ${{ secrets.OPENG2P_BOT_GITHUB_PAT }}

0 comments on commit d5bfbdd

Please sign in to comment.