Skip to content

Commit

Permalink
fix: typo in the env var for token (#53)
Browse files Browse the repository at this point in the history
* fix: typo in the env var for token

* fixes
  • Loading branch information
fuziontech authored Aug 8, 2024
1 parent 40aa965 commit 8bb90bf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: secrets.POSTHOG_BOT_GITHUB_TOKEN
token: ${{ secrets.POSTHOG_BOT_GITHUB_TOKEN }}

- name: Set up Go
uses: actions/setup-go@v3
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Determine version bump type
id: bump-type
env:
GITHUB_TOKEN: ${{ secrets.POSTHOG_BOT_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.POSTHOG_BOT_GITHUB_TOKEN }}
run: |
if [[ $(gh pr view ${{ github.event.pull_request.number }} --json labels -q '.labels[].name' | grep -q "minor") ]]; then
echo "type=minor" >> $GITHUB_OUTPUT
Expand All @@ -34,6 +34,7 @@ jobs:
id: bump-version
run: |
current_version=$(grep -oP 'const Version = "\K[^"]+' version.go)
echo "current_version=$current_version" >> $GITHUB_OUTPUT
IFS='.' read -ra version_parts <<< "$current_version"
major=${version_parts[0]}
minor=${version_parts[1]}
Expand All @@ -46,10 +47,11 @@ jobs:
fi
sed -i "s/const Version = \"$current_version\"/const Version = \"$new_version\"/" version.go
echo "::set-output name=new_version::$new_version"
echo "new_version=$new_version" >> $GITHUB_OUTPUT
- name: Update CHANGELOG.md
run: |
current_version="${{ steps.bump-version.output.current_version }}"
new_version="${{ steps.bump-version.outputs.new_version }}"
echo -e "## $new_version\n\n* [Full Changelog](https://github.com/PostHog/posthog-go/compare/v${current_version}...v${new_version})\n\n$(cat CHANGELOG.md)" > CHANGELOG.md
Expand Down

0 comments on commit 8bb90bf

Please sign in to comment.