Skip to content

.github/workflows/deploy.yml #2830

.github/workflows/deploy.yml

.github/workflows/deploy.yml #2830

Workflow file for this run

on:
pull_request:
push:
branches: [main]
schedule:
- cron: '30 8 * * *'
permissions:
contents: write
jobs:
pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install virtualenv
- run: make
- run: make push
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}