Skip to content

Commit

Permalink
Get s3 saving working on GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
WillNilges committed Aug 1, 2024
1 parent ed67795 commit ee38881
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
S3_BUCKET_NAME: ${{ secrets.S3_BUCKET_NAME }}
S3_BASE_NAME: ${{ secrets.TEST_S3_BASE_NAME }}
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_NAME }}
S3_SECRET_KEY: ${{ secrets.S3_BASE_NAME }}
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
JOIN_FORM_LOG: /tmp/join.csv
- uses: actions/upload-artifact@v4
if: always()
Expand Down
2 changes: 1 addition & 1 deletion components/JoinForm/JoinForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const JoinForm = () => {
let parsedForm = parseForm(event);
if (parsedForm === undefined) return;
// If we were able to glean the form, then save it.
//recordJoinFormSubmissionToS3(parsedForm);
recordJoinFormSubmissionToS3(parsedForm);
let j: JoinFormInput = parsedForm;
console.log(j);
await submitJoinForm(j);
Expand Down

0 comments on commit ee38881

Please sign in to comment.