From f00ef2390cb9368f939b6189758e55d29399e7bf Mon Sep 17 00:00:00 2001 From: Oliver Roick Date: Fri, 12 Jan 2024 11:33:03 +1100 Subject: [PATCH] supress warnings --- .github/workflows/deploy.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6f0eb18..6c0270b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,7 +10,7 @@ permissions: contents: read jobs: - build: + deploy: strategy: matrix: environment: [stacadmin-eoapirisk-demo] @@ -27,12 +27,13 @@ jobs: uses: actions/checkout@v2 - name: Install dependencies - run: npm install + run: yarn install - name: Build code env: + CI: "" REACT_APP_STAC_API: ${{ secrets.STAC_API }} - run: npm run build + run: yarn build - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v1