From 0bc40724341e84bf2768adfa4014aafb07aced9b Mon Sep 17 00:00:00 2001 From: Stan Ke <156306548@qq.com> Date: Fri, 13 Sep 2024 12:39:40 +0800 Subject: [PATCH] Abandon deno support --- .github/workflows/deploy.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4340e32..1dd23cb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,7 +11,6 @@ jobs: runs-on: ubuntu-latest permissions: - id-token: write # Needed for auth with Deno Deploy contents: read # Needed to clone the repository steps: @@ -23,11 +22,6 @@ jobs: - name: Clone repository uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 - - name: Install Deno - uses: denoland/setup-deno@041b854f97b325bd60e53e9dc2de9cb9f9ac0cba # v1.1.4 - with: - deno-version: v1.x - - name: Install Node.js uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: @@ -35,9 +29,3 @@ jobs: - name: Build step run: "npm install && npm run build" # 📝 Update the build command(s) if necessary - - - name: Upload to Deno Deploy - uses: denoland/deployctl@v1 # v1 - with: - project: "sad-camel-61" - entrypoint: "./app/page.tsx" # 📝 Update the entrypoint if necessary