Compare commits

...
1 Commits
Author SHA1 Message Date
Thomas SharedInboxandClaude Sonnet 4.6 921474e13b fix: rename workflow to Update Website and guard verify step (#282)
- Rename workflow name from "Deploy Website" to "Update Website"
- Rename job/step names from "Build & Deploy Website" to "Build & Update Website"
- Add same `if: secrets.SSH_PRIVATE_KEY != ''` guard to Verify Website step
  so it is skipped when the deploy step is also skipped, preventing the
  verify from failing on a stale website version

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-27 09:12:15 +02:00
+4 -3
View File
@@ -1,4 +1,4 @@
name: Deploy Website name: Update Website
on: on:
push: push:
@@ -11,7 +11,7 @@ on:
jobs: jobs:
deploy: deploy:
name: Build & Deploy Website name: Build & Update Website
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 60 timeout-minutes: 60
@@ -34,7 +34,7 @@ jobs:
DAGGER_CLIENT_KEY: ${{ secrets.DAGGER_CLIENT_KEY }} DAGGER_CLIENT_KEY: ${{ secrets.DAGGER_CLIENT_KEY }}
run: scripts/setup_dagger_remote.sh run: scripts/setup_dagger_remote.sh
- name: Build & Deploy Website - name: Build & Update Website
if: ${{ secrets.SSH_PRIVATE_KEY != '' }} if: ${{ secrets.SSH_PRIVATE_KEY != '' }}
env: env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
@@ -45,6 +45,7 @@ jobs:
run: task publish-website run: task publish-website
- name: Verify Website - name: Verify Website
if: ${{ secrets.SSH_PRIVATE_KEY != '' }}
env: env:
SSH_HOST: ${{ secrets.WEBSITE_SSH_HOST }} SSH_HOST: ${{ secrets.WEBSITE_SSH_HOST }}
run: scripts/website-verify.sh run: scripts/website-verify.sh