Skip to content

fix: Update github-tag-action to version 1.67.0 #33

fix: Update github-tag-action to version 1.67.0

fix: Update github-tag-action to version 1.67.0 #33

Workflow file for this run

name: Bump main Tag version
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '5.x'
- name: Use GitVersion
id: gitversion
uses: gittools/actions/gitversion/[email protected]
- run: |
echo "NuGetVersionV2: ${{ steps.gitversion.outputs.NuGetVersionV2 }}"
- name: Bump version and push tag
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# We want to push to nuget the same version we tag
CUSTOM_TAG: ${{ steps.gitversion.outputs.NuGetVersionV2 }}
RELEASE_BRANCHES: main