Skip to content

Bump golang.org/x/net from 0.15.0 to 0.17.0 (#53) #92

Bump golang.org/x/net from 0.15.0 to 0.17.0 (#53)

Bump golang.org/x/net from 0.15.0 to 0.17.0 (#53) #92

Workflow file for this run

name: Versioning
#on:
# push:
## branches: [ "master" ]
jobs:
create-tag:
runs-on: ubuntu-latest
#permisions to commit to repo
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: '5.x'
- name: Determine Version
uses: gittools/actions/gitversion/execute@v0
with:
useConfigFile: true
configFilePath: GitVersion.yml
- name: Assemble Helm Chart
run: .github/ci/package-helm-chart.sh ${{ env.semVer }}
- name: Tag Version and Push
run: .github/ci/version-tagging.sh ${{ env.semVer }}