From ab4d9d922f47085417f01a38724acf2c9c0c6a99 Mon Sep 17 00:00:00 2001 From: Naufal Suryanto Date: Mon, 16 Mar 2026 11:50:18 +0400 Subject: [PATCH 1/2] docs: Update the paper link in `index.html` to the arXiv URL. --- pages/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.html b/pages/index.html index db31536..b6b8bb7 100644 --- a/pages/index.html +++ b/pages/index.html @@ -136,7 +136,7 @@
- Paper From 61805655e61097971bd6d6e85d0c65510f3e4054 Mon Sep 17 00:00:00 2001 From: Naufal Suryanto Date: Mon, 16 Mar 2026 11:58:22 +0400 Subject: [PATCH 2/2] ci: Update static content deployment workflow to trigger on pull requests to main and add conditional deployment logic. --- .github/workflows/static.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 5fbeb25..035e700 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -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: @@ -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 }}