Merge pull request #13 from flightng/update-version-and-ci

Update version and ci
This commit is contained in:
Hugo Chiang 2022-11-30 15:12:27 +08:00 committed by GitHub
commit 67b2ccb6a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -52,10 +52,10 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('make/tools.mk') }}
- name: Build All firmware
run: make binary TARGET=${{ matrix.targets }} RELEASE=${{ inputs.release_build && 'yes' || 'no' }}
run: make TARGET=${{ matrix.targets }} RELEASE=${{ inputs.release_build && 'yes' || 'no' }}
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ci_${{ matrix.targets }}_${{ github.run_number }}
path: obj/*.bin
path: obj/*.hex

View File

@ -26,7 +26,7 @@
#define FC_FIRMWARE_IDENTIFIER "BTFL"
#define FC_VERSION_MAJOR 4 // increment when a major release is made (big new feature, etc)
#define FC_VERSION_MINOR 3 // increment when a minor release is made (small new feature, change etc)
#define FC_VERSION_PATCH_LEVEL 1 // increment when a bug is fixed
#define FC_VERSION_PATCH_LEVEL 2 // increment when a bug is fixed
#define FC_VERSION_STRING STR(FC_VERSION_MAJOR) "." STR(FC_VERSION_MINOR) "." STR(FC_VERSION_PATCH_LEVEL)