aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/main.yml30
-rw-r--r--includes/base.html1
2 files changed, 1 insertions, 30 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index ad95af0..0000000
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-on:
- push:
- branches: [ main ]
-jobs:
- deploy:
- runs-on: ubuntu-latest
- permissions:
- contents: read
- deployments: write
- name: Deploy to Cloudflare Pages
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- - name: Setup
- uses: actions/setup-node@v4
- with:
- node-version: '22.x'
- - name: Install Deps
- run: npm ci
- - name: Build
- run: npm run build
- - name: Publish
- uses: cloudflare/pages-action@v1
- with:
- apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
- accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
- projectName: sudomsg-com
- directory: dist/
- gitHubToken: ${{ secrets.GITHUB_TOKEN }}
-
diff --git a/includes/base.html b/includes/base.html
index 07fefe5..27c13cb 100644
--- a/includes/base.html
+++ b/includes/base.html
@@ -35,6 +35,7 @@
<template webc:for="entry of eleventyNavigation(collections.all)" webc:nokeep>
<a :href="entry.url" @text="entry.title"></a>
</template>
+ <a :href="https://git.sudomsg.com/">Git</a>
</nav>
</header>
<main @html="content"></main>