Skip to content

Commit 7b9e774

Browse files
committed
up
1 parent 012576f commit 7b9e774

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/workflows/up.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: up
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- '*'
9+
concurrency:
10+
group: up-${{ github.ref }}
11+
cancel-in-progress: true
12+
jobs:
13+
up:
14+
runs-on: ubuntu-22.04
15+
steps:
16+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
17+
- run: |-
18+
git fetch --tags --force && \
19+
latest=$(git tag --sort=creatordate | tail -1) && \
20+
sed -E -i "s/<version>[^<]+/<version>${latest}/g" README.md
21+
- uses: peter-evans/create-pull-request@v6
22+
with:
23+
branch: version-up
24+
commit-message: 'new version in README'
25+
delete-branch: true
26+
title: 'New version in README'
27+
assignees: yegor256
28+
base: master

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Just add this plugin to your `pom.xml`:
3232
<plugin>
3333
<groupId>com.qulice</groupId>
3434
<artifactId>qulice-maven-plugin</artifactId>
35+
<version>0.22.2</version>
3536
<configuration>
3637
<license>file:${basedir}/LICENSE.txt</license>
3738
</configuration>

0 commit comments

Comments
 (0)