Skip to content

Commit

Permalink
Create tags for the latest code daily
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Leoshkevich <[email protected]>
  • Loading branch information
iii-i committed Apr 10, 2024
1 parent f70d63a commit 307748a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
schedule:
- cron: '0 0 * * *'
pull_request: # XXX

permissions:
contents: write

jobs:
bump:
runs-on: ubuntu-latest
steps:
- name: Install packages
run: sudo apt-get update &&
sudo apt-get install -y xmllint
- name: Configure git
run: git config --global user.email [email protected] &&
git config --global user.name "dotnet-s390x bot"
- name: Checkout
uses: actions/checkout@v4
- name: Bump
run: ./dotnet-bump
- name: Push
run: git push origin $(git describe --exact-match --tags)

0 comments on commit 307748a

Please sign in to comment.