Skip to content

Commit

Permalink
fix: release and tag
Browse files Browse the repository at this point in the history
  • Loading branch information
dnitsch committed Oct 13, 2022
1 parent ae58119 commit b9dccae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

OWNER := dnitsch
NAME := reststrategy
GIT_TAG := "0.6.0"
GIT_TAG := "0.6.2"
VERSION := "v$(GIT_TAG)"
REVISION := $(shell git rev-parse --short HEAD)

Expand All @@ -18,7 +18,10 @@ build_ci:

tag:
git tag "v$(GIT_TAG)"
git push origin "v$(GIT_TAG)"
git tag "apis/v$(GIT_TAG)"
git tag "seeder/v$(GIT_TAG)"
git tag "controller/v$(GIT_TAG)"
git push --tags

release:
OWNER=$(OWNER) NAME=$(NAME) PAT=$(PAT) VERSION=$(VERSION) . hack/release.sh
Expand Down
4 changes: 2 additions & 2 deletions controller/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module github.com/dnitsch/reststrategy/controller
go 1.19

require (
github.com/dnitsch/reststrategy/apis v0.0.0-20221013114436-eef8ecff08e7
github.com/dnitsch/reststrategy/seeder v0.0.0-20221013114436-eef8ecff08e7
github.com/dnitsch/reststrategy/apis v0.6.1-rc
github.com/dnitsch/reststrategy/seeder v0.6.1-rc
// need to ensure that these packages are
// aligned to server version
k8s.io/api v0.25.2
Expand Down
8 changes: 4 additions & 4 deletions controller/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs
github.com/dnaeon/go-vcr v1.1.0 h1:ReYa/UBrRyQdant9B4fNHGoCNKw6qh6P0fsdGmZpR7c=
github.com/dnitsch/configmanager v1.8.0 h1:IplCvObk6xRa2lAssLtpi0jur56DTsUwGrJEGu+kZwQ=
github.com/dnitsch/configmanager v1.8.0/go.mod h1:hAFEcEd3mXlUWFUi+17iUdOO/qtNh7ft9Ri4Agz6J+c=
github.com/dnitsch/reststrategy/apis v0.0.0-20221013114436-eef8ecff08e7 h1:Rpfdk/WHIcTMeIreA5G2nqFJqwhSmB2LXllFgS2oGaI=
github.com/dnitsch/reststrategy/apis v0.0.0-20221013114436-eef8ecff08e7/go.mod h1:ndKudRdvk/2UD5OTbMfQDiYtBrZNX5PmowlYiSbmsvw=
github.com/dnitsch/reststrategy/seeder v0.0.0-20221013114436-eef8ecff08e7 h1:2DqIC5otrV/kXgGEsJq0oYiM5YDDH+VkY5pwIjaZVBw=
github.com/dnitsch/reststrategy/seeder v0.0.0-20221013114436-eef8ecff08e7/go.mod h1:RDdwl2zDJTwv2DfPOi4pVYeXp0/gpD6sj4EYN3EJvVM=
github.com/dnitsch/reststrategy/apis v0.6.1-rc h1:iRuqzUHz31JOXf1ai9tpX2yTwyIwK6PESxMLMY+gLew=
github.com/dnitsch/reststrategy/apis v0.6.1-rc/go.mod h1:ndKudRdvk/2UD5OTbMfQDiYtBrZNX5PmowlYiSbmsvw=
github.com/dnitsch/reststrategy/seeder v0.6.1-rc h1:63Sto9D6FmPS/wf9cRcHgl9muPtxaarsL3oSi+ePBHY=
github.com/dnitsch/reststrategy/seeder v0.6.1-rc/go.mod h1:RDdwl2zDJTwv2DfPOi4pVYeXp0/gpD6sj4EYN3EJvVM=
github.com/dnitsch/simplelog v1.5.1 h1:PhIFuZluJIAUiKgJ+xBzTZwqe49PFg20d3ToDucu3Dg=
github.com/dnitsch/simplelog v1.5.1/go.mod h1:scPvWULBlruthxS6seGJkMbc1DM5f44IRZNmaSZCJVU=
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE=
Expand Down

0 comments on commit b9dccae

Please sign in to comment.