Skip to content

tag-main

tag-main #4607

Workflow file for this run

name: Tag
on:
repository_dispatch:
types: [tag-main]
workflow_call:
inputs:
sui_commit:
description: 'Sui repo commit to tag'
type: string
required: true
tag_name:
description: 'Tag Name'
type: string
required: true
workflow_dispatch:
inputs:
sui_commit:
description: 'Sui repo commit to tag'
type: string
required: true
tag_name:
description: 'Tag Name'
type: string
required: true
permissions:
contents: write
env:
SUI_COMMIT: "${{ github.event.client_payload.sui_commit || inputs.sui_commit }}"
TAG_NAME: "${{ github.event.client_payload.tag_name || inputs.tag_name }}"
jobs:
tag:
name: Tag
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # Pin v4.1.1
with:
fetch-depth: 1
ref: ${{ env.SUI_COMMIT }}
- name: Tag
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git tag -f "${{ env.TAG_NAME }}" "${{ env.SUI_COMMIT }}"
git push origin -f "${{ env.TAG_NAME }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}