Skip to content

vbehar

vbehar #217

Workflow file for this run

# GitHub Actions Workflow definition to automatically create a new Git tag on each push to master
name: tag
on:
push:
branches:
- master
jobs:
tag:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.DM_BOT_TOKEN }}
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- uses: fregante/setup-git-user@v1
- name: tag
uses: jenkins-x-plugins/jx-release-version@v2.7.3
with:
tag: true
github-token: ${{ secrets.DM_BOT_TOKEN }}