Skip to content

Commit

Permalink
github: Made sure that the build-and-upload flow pulls the repo's tag…
Browse files Browse the repository at this point in the history
…s so that `git describe` works properly for the nightly builds to get proper version strings
  • Loading branch information
dragonmux committed Jan 6, 2025
1 parent 962c33d commit a9df5d6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-and-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-tags: true

# Build the firmware for all platform variants (currently available)
- name: Build
Expand Down Expand Up @@ -208,6 +208,8 @@ jobs:
# Checkout the repository and branch to build under the default location
- name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: true

# Build BMDA for Linux
- name: Build Linux BMDA
Expand Down Expand Up @@ -304,6 +306,8 @@ jobs:
# Checkout the repository and branch to build under the default location
- name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: true

# Build the default BMDA configuration
- name: Build full BMDA
Expand Down Expand Up @@ -378,6 +382,8 @@ jobs:
# Checkout the repository and branch to build under the default location
- name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: true

# Build the default BMDA configuration
- name: Build full BMDA
Expand Down

0 comments on commit a9df5d6

Please sign in to comment.