1
0
mirror of https://github.com/lework/jenkins-update-center.git synced 2024-11-21 10:05:55 +02:00
jenkins-update-center/.github/workflows/generator.yml
2023-05-30 17:21:20 +08:00

40 lines
912 B
YAML

name: generator
on:
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run script
run: |
python generator.py
- name: Push
uses: github-actions-x/commit@v2.9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'master'
commit-message: 'This is an github action commit.'
name: lework
email: lework@yeah.net
force-add: 'true'
force-push: 'true'