Browse Source

Workaround tags not being fetched correctly

This results in the version within the container being displayed
incorrectly (always 0.1.1).

Fixes https://github.com/itchysats/itchysats/issues/537.
chore/leaner-release-process
Thomas Eizinger 3 years ago
parent
commit
fa07b1029b
No known key found for this signature in database GPG Key ID: 651AC83A6C6C8B96
  1. 3
      .github/workflows/build-release-binary.yml

3
.github/workflows/build-release-binary.yml

@ -42,6 +42,9 @@ jobs:
ref: ${{ github.event.release.target_commitish }}
token: ${{ secrets.ITCHY_GITHUB_TOKEN }}
- name: Fetch all tags (workaround for https://github.com/actions/checkout/issues/290)
run: git fetch --tags --force
- name: Install toolchain from `rust-toolchain.toml`
run: rustup show

Loading…
Cancel
Save