diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 84e903b..dc441c1 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -1,4 +1,4 @@ -name: deploy-to-eb +name: Deploy-to-eb on: push: @@ -10,21 +10,21 @@ jobs: runs-on: ubuntu-latest steps: - - name: checkout repo + - name: Checkout repo uses: actions/checkout@v4 - - name: node install + - name: Node install uses: actions/setup-node@v3 with: node-version: '18' - - name: install npm dependencies + - name: Install npm dependencies run: npm install - name: Build Website Assets run: npm run build - - name: create zip deployment package + - name: Create zip deployment package run: zip -r deploy_package.zip .next pages public styles *.json *.js *.ts - name: Deploy to EB @@ -37,4 +37,4 @@ jobs: version_label: "ver-${{ github.sha }}" existing_bucket_name: seeqr-splash-page-deploy region: us-west-1 - deployment_package: nodejs.zip \ No newline at end of file + deployment_package: deploy_package.zip \ No newline at end of file