Skip to content

Generate tag version #5

Generate tag version

Generate tag version #5

# .github/workflows/generate-version.yml
name: Generate tag version
on:
workflow_dispatch:
inputs:
version:
description: New version
required: true
default: "patch"
type: choice
options:
- patch
- minor
- major
jobs:
version:
name: Create new version ${{ github.event.inputs.version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: main
- run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: Use Node.js 14
uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Generate new version
run: npm version ${{ github.event.inputs.version }}
- name: Push new version tag to repository
env:
PAT_TOKEN: ${{ secrets.PAT_TOKEN }}
run: |
git remote set-url origin https://x-access-token:${{ secrets.PAT_TOKEN }}@github.com/${{ github.repository }}
git push origin main --tags