From 875d8a95308ec410d09c7313e2ebd3a4e5b93a17 Mon Sep 17 00:00:00 2001 From: yiming Date: Sat, 11 Jan 2025 17:13:57 +0800 Subject: [PATCH] fix app bug --- .github/workflows/deploy.yml | 39 ------------------------------------ 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 1f587f0..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Deploy to GitHub Pages - -on: - push: - branches: [ main ] - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: '18' - - - name: Install Dependencies - run: | - cd app - npm install - npm install --save @solana/spl-token - npm install --save-dev @types/bn.js - npm install --save-dev @project-serum/anchor - - - name: Build - run: | - cd app - npm run build - - - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4 - with: - folder: app/dist - branch: gh-pages - token: ${{ secrets.ACCESS_TOKEN }}