Skip to content

Commit 2dce222

Browse files
committed
fix: github token setup
1 parent e55bb30 commit 2dce222

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/tag.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
release:
88
runs-on: ubuntu-latest
99
env:
10-
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
10+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: Install Go
@@ -37,8 +37,6 @@ jobs:
3737
with:
3838
version: latest
3939
args: release --rm-dist --release-notes=/tmp/changelog
40-
env:
41-
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
4240

4341
- name: Update version in package.json
4442
run: |

tools/dev/makefiles/changelog.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
66
include $(SELF_DIR)shared.mk
77

88
STARTING_VERSION := v0.1.0
9-
GITCHGLOG_VERSION ?= 0.15.0
9+
GITCHGLOG_VERSION ?= 0.15.4
1010
GITCHGLOG := $(DEV_BIN_PATH)/git-chglog_$(GITCHGLOG_VERSION)
11-
SEMVERBOT_VERSION ?= 0.2.0
11+
SEMVERBOT_VERSION ?= 1.7.2
1212
SEMVERBOT := $(DEV_BIN_PATH)/sbot_$(SEMVERBOT_VERSION)
1313

1414
SEMVER_PREDICT_VERSION = $(shell $(SEMVERBOT) predict version)

tools/dev/makefiles/shared.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OS ?= $(shell uname -s | tr [:upper:] [:lower:])
66
ARCH ?= $(shell case `uname -m` in \
77
(i386 | i686) echo "386" ;; \
88
(x86_64) echo "amd64" ;; \
9-
(aarch64_be | aarch64 | armv8b | armv8l) echo "arm64" ;; \
9+
(aarch64_be | aarch64 | armv8b | armv8l | arm64) echo "arm64" ;; \
1010
(*) exit "unsupported" ;; \
1111
esac)
1212
DEV_BIN_PATH ?= bin

0 commit comments

Comments
 (0)