Skip to content

Commit

Permalink
Update release workflow to nodejs20
Browse files Browse the repository at this point in the history
  • Loading branch information
rvdbreemen committed Apr 3, 2024
1 parent 3f0320f commit c6572d4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: echo ${{ github.sha }} > Release-${{ github.ref_name }}.txt
- name: Test
run: cat Release-${{ github.ref_name }}.txt
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down
14 changes: 7 additions & 7 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 2106
#define _VERSION_GITHASH "6752fdf"
#define _VERSION_BUILD 2108
#define _VERSION_GITHASH "3f0320f"
#define _VERSION_PRERELEASE beta
#define _VERSION_DATE "02-04-2024"
#define _VERSION_TIME "18:29:36"
#define _VERSION_TIME "23:13:43"
#define _SEMVER_CORE "0.10.3"
#define _SEMVER_BUILD "0.10.3+2106"
#define _SEMVER_GITHASH "0.10.3+6752fdf"
#define _SEMVER_FULL "0.10.3-beta+6752fdf"
#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+6752fdf (02-04-2024)"
#define _VERSION "0.10.3-beta+3f0320f (02-04-2024)"
//The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver

0 comments on commit c6572d4

Please sign in to comment.