Skip to content

Commit

Permalink
chore(ci): bump platform deps, fix kasregistry breaking policy change…
Browse files Browse the repository at this point in the history
…, prefix release versions with v (#133)

Updates:
1. bump platform deps
2. fix kasregistry breaking change in the platform now that it moved
under policy
3. make sure release version tag is prefixed with `v` for compatibility
with go modules

Closes #134
  • Loading branch information
jakedoublev authored Apr 29, 2024
1 parent c6e8225 commit 267764f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,22 @@ jobs:
increment: ${{ github.event.inputs.versionBumpType }}
pep440: false
- name: print-version
run: echo Incrementing Version ${{ steps.version.outputs.current-version }} -> ${{ steps.version.outputs.version }}
run: echo Incrementing Version ${{ steps.version.outputs.current-v-version }} -> ${{ steps.version.outputs.v-version }}
- name: make-targets
env:
SEM_VER: ${{ steps.version.outputs.version }}
SEM_VER: ${{ steps.version.outputs.v-version }}
run: make build
- name: smoke-test
run: go test ./... -short -race -cover
- name: Compress the builds and generate checksums
env:
SEM_VER: ${{ steps.version.outputs.version }}
SEM_VER: ${{ steps.version.outputs.v-version }}
run: make zip-builds
- name: Release
uses: softprops/action-gh-release@v2
with:
files: './output/**/*'
body: 'This is a test release, and will be removed'
tag_name: ${{ steps.version.outputs.version }}
tag_name: ${{ steps.version.outputs.v-version }}
repository: opentdf/otdfctl
generate_release_notes: true

0 comments on commit 267764f

Please sign in to comment.