Skip to content

Commit e0b5fb7

Browse files
committed
fix: release?
1 parent b37f0bf commit e0b5fb7

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ jobs:
4141
SEMVER: ${{ needs.set-deps-dotnet-poop-here.outputs.semVer }}
4242
steps:
4343
- uses: actions/checkout@v3
44+
with:
45+
fetch-depth: 0
4446
- name: install deps
4547
run: |
4648
apt update && apt install jq -y

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,8 @@ release:
4848
OWNER=$(OWNER) NAME=$(NAME) PAT=$(PAT) VERSION=$(VERSION) . hack/release.sh
4949

5050
tag:
51-
git tag "v$(GIT_TAG)"
52-
git push origin "v$(GIT_TAG)"
53-
54-
echo:
55-
echo $(REVISION)
51+
git tag -a $(VERSION) -m "ci tag release uistrategy" $(REVISION)
52+
git push origin $(VERSION)
5653

5754
tagbuildrelease: tag cross-build release
5855

0 commit comments

Comments
 (0)