Skip to content

Commit

Permalink
fix(auto_release): fetch all tags and branches properly (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
rxri authored Nov 5, 2023
1 parent 480dad0 commit f13bed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/auto_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
- name: Check out the code
uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Check the package version
id: check_result
run: |
latest_release_version=$(git for-each-ref --sort=-creatordate --count 1 --format="%(refname:short)" "refs/tags/*")
latest_release_version="$(git for-each-ref --sort=-creatordate --count 1 --format="%(refname:short)" "refs/tags/*")"
current_version="v$(node -p "require('./package.json').version")"
if [[ "$latest_release_version" == "$current_version" ]]; then
echo "version_changed=false" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit f13bed3

Please sign in to comment.