Skip to content

Commit

Permalink
Add tagging action
Browse files Browse the repository at this point in the history
  • Loading branch information
nb1701 committed Apr 2, 2024
1 parent 725cfa8 commit 7548556
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Tag Repo

on:
workflow_dispatch:
inputs:
commit_sha:
description: 'Commit SHA'
required: true
default: 'HEAD'

version:
description: 'The version for this release, matching the CiviForm release version, e.g. v1.2.3'
required: true

jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Tag the repo
run: |
git config user.email "github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
git tag ${{ github.event.inputs.version }}
git push origin ${{ github.event.inputs.version }}

0 comments on commit 7548556

Please sign in to comment.