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