From 082f2f5c2d1c1ac5767b7b68d2e783216dd2764a Mon Sep 17 00:00:00 2001 From: Robert van den Breemen Date: Sun, 17 Mar 2024 11:57:19 +0100 Subject: [PATCH] Just to update the binaries and test the workflow in github --- .github/workflows/release.yml | 6 +++--- version.h | 18 +++++++++--------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 966ae55..0dbca74 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,13 +12,13 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Build - run: echo ${{ github.sha }} > Release.txt + run: echo ${{ github.sha }} > Release-${{ github.ref_name }}.txt - name: Test - run: cat Release.txt + run: cat Release-${{ github.ref_name }}.txt - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: files: | - Release.txt + Release-${{ github.ref_name }}.txt LICENSE \ No newline at end of file diff --git a/version.h b/version.h index 5fb9a0d..3821385 100644 --- a/version.h +++ b/version.h @@ -2,15 +2,15 @@ #define _VERSION_MAJOR 0 #define _VERSION_MINOR 10 #define _VERSION_PATCH 3 -#define _VERSION_BUILD 2097 -#define _VERSION_GITHASH "827df64" +#define _VERSION_BUILD 2101 +#define _VERSION_GITHASH "d99f272" #define _VERSION_PRERELEASE beta -#define _VERSION_DATE "12-09-2023" -#define _VERSION_TIME "21:15:34" +#define _VERSION_DATE "17-03-2024" +#define _VERSION_TIME "11:46:27" #define _SEMVER_CORE "0.10.3" -#define _SEMVER_BUILD "0.10.3+2097" -#define _SEMVER_GITHASH "0.10.3+827df64" -#define _SEMVER_FULL "0.10.3-beta+827df64" -#define _SEMVER_NOBUILD "0.10.3-beta (12-09-2023)" -#define _VERSION "0.10.3-beta+827df64 (12-09-2023)" +#define _SEMVER_BUILD "0.10.3+2101" +#define _SEMVER_GITHASH "0.10.3+d99f272" +#define _SEMVER_FULL "0.10.3-beta+d99f272" +#define _SEMVER_NOBUILD "0.10.3-beta (17-03-2024)" +#define _VERSION "0.10.3-beta+d99f272 (17-03-2024)" //The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver