Tag Repo #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tag Repo | |
on: | |
workflow_dispatch: | |
inputs: | |
commit_sha: | |
description: 'Commit SHA' | |
required: true | |
default: 'main' | |
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 }} ${{ github.event.inputs.commit_sha }} --message "${{ github.event.inputs.version }}" | |
git push origin ${{ github.event.inputs.version }} |