Run Arxiv Papers Daily #905
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # name of workflow | |
| name: Run Arxiv Papers Daily | |
| # Controls when the workflow will run | |
| on: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 2 * * mon-fri" # Runs every day in 12 | |
| env: | |
| TOKEN: ${{ secrets.ISSUE_TOKEN }} | |
| GITHUB_USER_NAME: olozhika # your github id | |
| GITHUB_USER_EMAIL: [email protected] # your email address | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| # This workflow contains a single job called "build" | |
| build: | |
| name: update | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Set up Python 3.8 | |
| uses: actions/[email protected] | |
| with: | |
| python-version: 3.8 | |
| #- name: Setup Node.js environment | |
| # uses: actions/[email protected] | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| python3 -m pip install -r requirements.txt | |
| - name: Run daily arxiv | |
| env: | |
| GITHUB: ${{ secrets.GITHUB }} | |
| run: TOKEN=${{ secrets.ISSUE_TOKEN }} python main.py --token=TOKEN | |
| # ============================================ | |
| # TODO [√] 更新仓库数据 | |
| # ============================================ | |
| - name: Setup GIT user | |
| uses: fregante/[email protected] | |
| - name: Push done work | |
| run: | | |
| git add --all | |
| git commit -m "Automated deployment" | |
| git push --force origin main |