Skip to content

Merge pull request #65 from CityOfPhiladelphia/search-button-focus-fix #14

Merge pull request #65 from CityOfPhiladelphia/search-button-focus-fix

Merge pull request #65 from CityOfPhiladelphia/search-button-focus-fix #14

Workflow file for this run

name: Deploy to staging
on:
push:
branches:
- staging
jobs:
build:
name: Build files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Build project files
run: |
npm ci
npm run build-staging
- name: Deploy to s3
env:
AWS_DEFAULT_REGION: us-east-1
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run:
aws s3 cp dist s3://philagov-vue-apps/services-azlist/staging --recursive # change it