Skip to content

Commit

Permalink
Actually fetch the tags
Browse files Browse the repository at this point in the history
  • Loading branch information
theRookieCoder committed Feb 23, 2024
1 parent 74a5256 commit 66bf5ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: echo "MD_HEADER=$(git describe --tags | sed 's/\.//g')" >> $GITHUB_ENV

- name: Get the latest tag
run: echo "TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
run: git fetch --depth=25 && echo "TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV

- name: Create release
uses: softprops/action-gh-release@v1
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
path: ./out

- name: Get the latest tag
run: echo "TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
run: git fetch --depth=25 && echo "TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV

- name: Update no-gui AUR package
uses: ATiltedTree/create-aur-release@v1
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
path: ./out

- name: Get the latest tag
run: echo "TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
run: git fetch --depth=25 && echo "TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV

- name: Update Homebrew formula
uses: mislav/bump-homebrew-formula-action@v3
Expand Down

0 comments on commit 66bf5ec

Please sign in to comment.