Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Staging Build
on:
workflow_dispatch:
push:
branches:
- staging
Expand All @@ -8,11 +9,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Use Node.js 20.19.0
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '20.19.0'
node-version: 'lts/*'
- name: Yarn Install
run: |
cd frontend && yarn cache clean && yarn install
Expand Down Expand Up @@ -51,8 +52,8 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
SOURCE_DIR: "frontend/build"
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.7'
- name: Install aws cli
Expand Down