Skip to content

Commit 06553ec

Browse files
committed
Create tags for the latest code daily
Signed-off-by: Ilya Leoshkevich <[email protected]>
1 parent f70d63a commit 06553ec

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/bump.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
schedule:
3+
- cron: '0 0 * * *'
4+
5+
permissions:
6+
contents: write
7+
8+
jobs:
9+
bump:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Install packages
13+
run: sudo apt-get update &&
14+
sudo apt-get install -y libxml2-utils
15+
- name: Configure git
16+
run: git config --global user.email [email protected] &&
17+
git config --global user.name "dotnet-s390x bot"
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
- name: Bump
21+
run: ./dotnet-bump
22+
- name: Push
23+
run: git push origin $(git describe --exact-match --tags)

0 commit comments

Comments
 (0)