Skip to content

Commit

Permalink
Fix release version detection
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAssassin committed Apr 8, 2024
1 parent 8797012 commit 6be8b52
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/github-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
submodules: "recursive"
fetch-depth: 0

# continuous tag confuses git describe --tags, happens here specifically due to us fetching the entirety of the repository
- name: Delete continuous tag
run: |
git tag | grep '^continuous$' && git tag -d continuous
- name: Build distribution
run: |
# we use a separate directory called output to "collect" all the build artifacts
Expand Down

0 comments on commit 6be8b52

Please sign in to comment.