Browse Source

Merge #734

734: Workaround tags not being fetched correctly r=thomaseizinger a=thomaseizinger

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

Fixes https://github.com/itchysats/itchysats/issues/537.


Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
chore/leaner-release-process
bors[bot] 3 years ago
committed by GitHub
parent
commit
7e632e5537
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  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