Skip to content

fixed missing Get-AksEdgeKubeConfig #13 (#14) #11

fixed missing Get-AksEdgeKubeConfig #13 (#14)

fixed missing Get-AksEdgeKubeConfig #13 (#14) #11

Workflow file for this run

name: Create git tag
on:
push:
branches:
- main
jobs:
Build-Code:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '5.x'
- name: Determine Version
uses: gittools/actions/gitversion/[email protected]
with:
useConfigFile: true
- name: Create git tag
run: |
git tag ${{ env.GitVersion_MajorMinorPatch }}
if: github.ref == 'refs/heads/main'
- name: Push git tag
run: git push origin ${{ env.GitVersion_MajorMinorPatch }}
if: github.ref == 'refs/heads/main'