Skip to content

.github/workflows/version.yml #3

.github/workflows/version.yml

.github/workflows/version.yml #3

Workflow file for this run

---
"on":
schedule:
# 18:00 on Friday
- cron: 0 18 * * 5
workflow_dispatch:
# https://github.com/softprops/action-gh-release/issues/236
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
- name: Update version
run: |
scripts/update-version.pl pyproject.toml src/xmake/__init__.py
- uses: stefanzweifel/git-auto-commit-action@v5