Skip to content

Commit

Permalink
docs: Prepare for v0.1.8 release (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
varungandhi-src authored Oct 26, 2023
1 parent cfb0ebd commit acd1632
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,20 @@ jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
- name: Check direct push
run: |
VERSION_FILE_PATH="internal/index/version.txt"
if ! grep -q "${TAG/v/}" "$VERSION_FILE_PATH"; then
echo "error: scip-go version in $VERSION_FILE_PATH doesn't match NEW_VERSION=$NEW_VERSION"
exit 1
fi
env:
TAG: ${{ github.ref_name }}
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19.x
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# ChangeLog

## v0.1.8

- Fixed the version number emitted in SCIP indexes
and printed by `scip-go --version`.
(https://github.com/sourcegraph/scip-go/pull/60)
2 changes: 1 addition & 1 deletion internal/index/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.7
0.1.8

0 comments on commit acd1632

Please sign in to comment.