Skip to content

Commit

Permalink
Just to update the binaries and test the workflow in github
Browse files Browse the repository at this point in the history
  • Loading branch information
rvdbreemen committed Mar 17, 2024
1 parent d99f272 commit 082f2f5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
18 changes: 9 additions & 9 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 082f2f5

Please sign in to comment.