Commit f31d3ea 1 parent 45814b9 commit f31d3ea Copy full SHA for f31d3ea
File tree 4 files changed +23
-1
lines changed
4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches :
4
+ - main
5
+
6
+ permissions :
7
+ contents : write
8
+ pull-requests : write
9
+
10
+ name : release-please
11
+
12
+ jobs :
13
+ release-please :
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : google-github-actions/release-please-action@v4
17
+ with :
18
+ token : ${{ secrets.RELEASE_PLEASE_TOKEN }}
19
+ release-type : simple
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.28)
2
2
set (CMAKE_VERBOSE_MAKEFILE ON )
3
3
4
+ file (READ "version.txt" version )
5
+
4
6
project (smoothpaper
5
- VERSION 0.1.0
7
+ VERSION ${version}
6
8
DESCRIPTION "A wallpaper manager with smooth transitions for X11 Window Managers"
7
9
LANGUAGES CXX
8
10
)
Original file line number Diff line number Diff line change
1
+ 0.1.0
You can’t perform that action at this time.
0 commit comments