Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["pages"]
# Runs on pull requests targeting the main branch
pull_request:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -24,6 +24,7 @@ concurrency:
jobs:
# Single deploy job since we're just deploying
deploy:
if: github.event_name == 'workflow_dispatch' || github.event.pull_request.head.ref == 'pages'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down
2 changes: 1 addition & 1 deletion pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@

<!-- Links / Badges -->
<div class="flex flex-wrap justify-center gap-4">
<a href="#"
<a href="https://arxiv.org/abs/2603.12382"
class="group relative inline-flex items-center justify-center px-6 py-3 text-base font-semibold text-white transition-all duration-200 bg-slate-900 border border-transparent rounded-full hover:bg-slate-800 hover:shadow-lg hover:-translate-y-0.5 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-slate-900">
<i data-lucide="file-text" class="w-5 h-5 mr-2 group-hover:scale-110 transition-transform"></i>
Paper
Expand Down
Loading