From c57b5e8535e9aa7565621fdd623184e716d45e4c Mon Sep 17 00:00:00 2001 From: Ben C Date: Tue, 23 Jun 2026 15:00:10 +0000 Subject: [PATCH] workflows: remove --- .github/workflows/deploy.yml | 43 ------------------------------------------- .tangled/workflows/build.yml | 19 ------------------- 2 file(s) changed, 0 insertion(s)(+), 62 deletion(s)(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Deploy To GitHub Pages - -on: - workflow_dispatch: - push: - branches: [main] - -permissions: - contents: read - pages: write - id-token: write - -jobs: - build: - runs-on: "ubuntu-latest" - steps: - - name: Checkout - uses: actions/checkout@v6 - - - uses: cachix/install-nix-action@v31 - with: - github_access_token: ${{ secrets.GITHUB_TOKEN }} - - - name: Nix Build - run: nix build .# - - - name: Upload Site - id: deployment - uses: actions/upload-pages-artifact@v5 - with: - path: result/ - include-hidden-files: true - - deploy: - needs: build - runs-on: ubuntu-latest - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v5 diff --git a/.tangled/workflows/build.yml b/.tangled/workflows/build.yml deleted file mode 100644 --- a/.tangled/workflows/build.yml +++ /dev/null @@ -1,19 +0,0 @@ -when: - - event: ["manual", "push"] - branch: ["main"] - -engine: nixery - -dependencies: - nixpkgs: - - nodejs - - typst - -environment: - ASTRO_TELEMETRY_DISABLED: 1 - -steps: - - name: Build Site - command: | - npm i - npm run build -- tangled.sh