Skip to content

Commit f31d3ea

Browse files
committed
add release-please
1 parent 45814b9 commit f31d3ea

File tree

4 files changed

+23
-1
lines changed

4 files changed

+23
-1
lines changed

.github/workflows/release-please.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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

CHANGELOG.md

Whitespace-only changes.

CMakeLists.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
cmake_minimum_required(VERSION 3.28)
22
set(CMAKE_VERBOSE_MAKEFILE ON)
33

4+
file(READ "version.txt" version)
5+
46
project(smoothpaper
5-
VERSION 0.1.0
7+
VERSION ${version}
68
DESCRIPTION "A wallpaper manager with smooth transitions for X11 Window Managers"
79
LANGUAGES CXX
810
)

version.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.0

0 commit comments

Comments
 (0)