2023-08-06 21:14:15 -04:00
|
|
|
name: Tag Repository
|
2023-08-06 21:18:01 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
branch:
|
|
|
|
required: true
|
|
|
|
type: string
|
2023-08-06 21:14:15 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
tag:
|
|
|
|
name: Tag Repository
|
2023-08-06 21:18:01 -04:00
|
|
|
if: $GITHUB_REF_NAME == "${{ inputs.branch }}"
|
2023-08-06 21:14:15 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: ztimson/actions/git/checkout@develop
|
|
|
|
- uses: ztimson/actions/git/tag@develop
|