diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-06-03 01:38:53 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-06-03 01:38:53 -0700 |
| commit | 4a2f82f06490b7fb277dc6c7558d10c34503a495 (patch) | |
| tree | a206b7dd9777371d07ba1599cf3eff7f52df4d97 /.github/workflows | |
| parent | 0cc204ae751a69f20925d2791c930bbf45e4eeed (diff) | |
add basic daily answer encryption
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build_website.yml | 13 | ||||
| -rw-r--r-- | .github/workflows/deploy_website.yml | 40 |
2 files changed, 0 insertions, 53 deletions
diff --git a/.github/workflows/build_website.yml b/.github/workflows/build_website.yml deleted file mode 100644 index 56a2200..0000000 --- a/.github/workflows/build_website.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Build Website - -on: - pull_request: - branches: [ "master" ] - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/build diff --git a/.github/workflows/deploy_website.yml b/.github/workflows/deploy_website.yml deleted file mode 100644 index 7c0557e..0000000 --- a/.github/workflows/deploy_website.yml +++ /dev/null @@ -1,40 +0,0 @@ -# Simple workflow for deploying static content to GitHub Pages -name: Deploy Website - -on: - # Runs on pushes targeting the default branch - push: - branches: ["master"] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. -# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. -concurrency: - group: "pages" - cancel-in-progress: false - -jobs: - # Single deploy job since we're just deploying - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/build - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: './build' - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 |
