We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f70d63a commit 06553ecCopy full SHA for 06553ec
.github/workflows/bump.yml
@@ -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