We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b37f0bf commit e0b5fb7Copy full SHA for e0b5fb7
.github/workflows/release.yml
@@ -41,6 +41,8 @@ jobs:
41
SEMVER: ${{ needs.set-deps-dotnet-poop-here.outputs.semVer }}
42
steps:
43
- uses: actions/checkout@v3
44
+ with:
45
+ fetch-depth: 0
46
- name: install deps
47
run: |
48
apt update && apt install jq -y
Makefile
@@ -48,11 +48,8 @@ release:
OWNER=$(OWNER) NAME=$(NAME) PAT=$(PAT) VERSION=$(VERSION) . hack/release.sh
49
50
tag:
51
- git tag "v$(GIT_TAG)"
52
- git push origin "v$(GIT_TAG)"
53
-
54
-echo:
55
- echo $(REVISION)
+ git tag -a $(VERSION) -m "ci tag release uistrategy" $(REVISION)
+ git push origin $(VERSION)
56
57
tagbuildrelease: tag cross-build release
58
0 commit comments