Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion .github/workflows/build-lambda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
cd scripts
yarn install --frozen-lockfile
yarn build
cd dist
mkdir -p build
cp -r dist/ build/
cp -r node_modules/ build/
cd build
zip -r ../../lambda-function.zip .
cd ../..
- name: Deploy to S3
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ dist-ssr
*.sln
*.sw?

public/data/rolling-images.json
public/data/rolling-images.json
lambda-function.zip
3 changes: 2 additions & 1 deletion scripts/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules/
dist/
dist/
build/