Skip to content

increase build-number #137

increase build-number

increase build-number #137

name: increase build-number
on:
schedule:
- cron: "0 6 * * 0/4"
workflow_dispatch:
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout
- name: increase build number
run:
python recipe/increase_build_number.py
- name: Create report file
run: date +%s > report.txt
- name: Commit report
run: |
git config --global user.name 'looooo'
git config --global user.email '[email protected]'
git commit -am "+=1"
git push