From bea6e6f9ff77bc1f5fa73d68a98149515ad787bc Mon Sep 17 00:00:00 2001 From: Erik Nucibella Date: Sun, 21 Jan 2024 00:55:46 +0100 Subject: [PATCH] fix(ci): workflow in wrong place --- .github/deploy-pages.yml | 61 ------------------------------ .github/workflows/deploy-pages.yml | 2 +- 2 files changed, 1 insertion(+), 62 deletions(-) delete mode 100644 .github/deploy-pages.yml diff --git a/.github/deploy-pages.yml b/.github/deploy-pages.yml deleted file mode 100644 index 68fd6e4..0000000 --- a/.github/deploy-pages.yml +++ /dev/null @@ -1,61 +0,0 @@ -# Simple workflow for deploying static content to GitHub Pages -name: Deploy static content to Pages - -on: - # Runs on pushes targeting the default branch - push: - branches: ['main'] - - # 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 - packages: write - -# Allow one concurrent deployment -concurrency: - group: 'pages' - cancel-in-progress: true - -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: - - name: Checkout - uses: actions/checkout@v3 - - - name: Use Node from .nvmrc - uses: actions/setup-node@v3 - with: - with: - node-version: '.nvmrc' - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} - - - name: Build React App - run: yarn build - env: - REACT_APP_PUBLIC_PROJECT_ID: 8dfc5cac972ee656e6edeb8309ab30ec - REACT_APP_RELAY_URL: wss://relay.walletconnect.com - WALLET_CONNECT_DEBUGGER: true - - - name: Setup Pages - uses: actions/configure-pages@v2 - - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - # Upload build - path: './apps/web/dist' - - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v1 diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 83ee7cc..c7e6143 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -25,7 +25,7 @@ jobs: # Single deploy job since we're just deploying deploy: environment: - name: Pages + name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: