From 054866b8afacfed6d15d63f0130b83d91cd56673 Mon Sep 17 00:00:00 2001 From: Robert van den Breemen Date: Mon, 8 Apr 2024 21:37:27 +0200 Subject: [PATCH] trying to call build from release flow --- .github/workflows/release.yml | 3 ++- version.h | 18 +++++++++--------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 19692ba..379d413 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Build - run: echo ${{ github.sha }} > Release-${{ github.ref_name }}.txt + uses: ./.github/actions/build + #run: echo ${{ github.sha }} > Release-${{ github.ref_name }}.txt - name: Test run: cat Release-${{ github.ref_name }}.txt - name: Release diff --git a/version.h b/version.h index 0086589..bb295a9 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 2108 -#define _VERSION_GITHASH "3f0320f" +#define _VERSION_BUILD 2109 +#define _VERSION_GITHASH "20cf3ad" #define _VERSION_PRERELEASE beta -#define _VERSION_DATE "02-04-2024" -#define _VERSION_TIME "23:13:43" +#define _VERSION_DATE "06-04-2024" +#define _VERSION_TIME "23:04:43" #define _SEMVER_CORE "0.10.3" -#define _SEMVER_BUILD "0.10.3+2108" -#define _SEMVER_GITHASH "0.10.3+3f0320f" -#define _SEMVER_FULL "0.10.3-beta+3f0320f" -#define _SEMVER_NOBUILD "0.10.3-beta (02-04-2024)" -#define _VERSION "0.10.3-beta+3f0320f (02-04-2024)" +#define _SEMVER_BUILD "0.10.3+2109" +#define _SEMVER_GITHASH "0.10.3+20cf3ad" +#define _SEMVER_FULL "0.10.3-beta+20cf3ad" +#define _SEMVER_NOBUILD "0.10.3-beta (06-04-2024)" +#define _VERSION "0.10.3-beta+20cf3ad (06-04-2024)" //The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver