Skip to content

Commit

Permalink
chore: fix release workflow for new go version
Browse files Browse the repository at this point in the history
  • Loading branch information
smlx committed Aug 18, 2023
1 parent ebda6d8 commit 1217016
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tag-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ jobs:
tag:
runs-on: ubuntu-latest
steps:
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: stable
- name: Install ccv
run: go install github.com/smlx/ccv@latest
- name: Checkout
uses: actions/checkout@v3
with:
Expand All @@ -17,12 +23,6 @@ jobs:
run: |
git config --global user.name "$GITHUB_ACTOR"
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: stable
- name: Install ccv
run: go get github.com/smlx/ccv
- name: Bump tag if necessary
id: tag
run: |
Expand Down

0 comments on commit 1217016

Please sign in to comment.