Skip to content

Keep daily arXiv recommendations current #29

Keep daily arXiv recommendations current

Keep daily arXiv recommendations current #29

Workflow file for this run

name: Deploy GUI Preview
on:
push:
branches: [ main ]
paths:
- "index.html"
- "deployments/desktop/static/**"
- ".github/workflows/pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: "."
- id: deployment
uses: actions/deploy-pages@v4