Merge pull request #28 from open-source-labs/gitHubActionsInit #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy-to-eb | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Node install | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install npm dependencies | |
run: npm install | |
- name: Build Website Assets | |
run: npm run build | |
- name: Create zip deployment package | |
run: zip -r deploy_package.zip .next pages public styles *.json *.js *.ts | |
- name: Deploy to EB | |
uses: einaregilsson/beanstalk-deploy@v21 | |
with: | |
aws_access_key: ${{ secrets.ACCESS_KEY_ID }} | |
aws_secret_key: ${{ secrets.SECRET_ACCESS_KEY }} | |
application_name: SeeQR-Website | |
environment_name: SeeQR-Website-env | |
version_label: "ver-${{ github.sha }}" | |
existing_bucket_name: seeqr-splash-page-deploy | |
region: us-west-1 | |
deployment_package: deploy_package.zip |