浏览代码

ci: fix workflow v2 (#3)

LoGin 10 月之前
父节点
当前提交
edc9164339
共有 1 个文件被更改,包括 2 次插入33 次删除
  1. 2 33
      .github/workflows/deploy.yml

+ 2 - 33
.github/workflows/deploy.yml

@@ -37,44 +37,13 @@ jobs:
           source ~/.bashrc
           npm install
   
-  build:
-    runs-on: ubuntu-latest
-    needs: [ensure-toolchain]
-    steps:
-      - uses: actions/checkout@v3
-
-      - name: Cache dependencies
-        id: cache-node-modules
-        uses: actions/cache@v3
-        env:
-          cache-name: cache-node-modules
-        with:
-          path: ./node_modules
-          key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('package.json') }}
-      
-      - name: Setup Node.js environment
-        uses: actions/setup-node@v3.7.0
-        with:
-          node-version: "20.11.0"
-      
-      - name: echo node version
-        run: node -v
-      
-      - name: Build
-        run: npm run docs:build
-
-  deploy:
+  build-and-deploy:
     runs-on: ubuntu-latest
     needs: [ensure-toolchain]
     environment:
       name: github-pages
     steps:
-      - name: Check github secrets
-        run: sh -c 'if [ -z "${{ secrets.ACTIONS_DEPLOY_KEY }}" ]; then
-            echo "GitHub Actions deploy key is missing";
-            exit 1;
-          fi'
-      
+            
       - uses: actions/checkout@v3
 
       - name: Cache dependencies