Skip to content

Commit ef568cd

Browse files
committed
Make release CI added
1 parent 0321116 commit ef568cd

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/workflows/make-release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Make release
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
call:
10+
name: Call check version CI
11+
uses: LIHPC-Computational-Geometry/spack_recipes/.github/workflows/make-release-reusable.yml@main

cmake/version.cmake

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#
2+
# version.cmake : version du projet
3+
#
4+
5+
set (MACHINE_TYPES_MAJOR_VERSION "2")
6+
set (MACHINE_TYPES_MINOR_VERSION "0")
7+
set (MACHINE_TYPES_RELEASE_VERSION "0")
8+
set (MACHINE_TYPES_VERSION ${MACHINE_TYPES_MAJOR_VERSION}.${MACHINE_TYPES_MINOR_VERSION}.${MACHINE_TYPES_RELEASE_VERSION})
9+
10+

0 commit comments

Comments
 (0)