-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #278 from UoaWDCC/UABC-238-View-attendees-list
* squashed commits from #278
- Loading branch information
Showing
56 changed files
with
10,685 additions
and
11,605 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,8 @@ NEXTAUTH_SECRET=EXAMPLE_NEXTAUTH_SECRET | |
|
||
SES_ACCESS_KEY=EXAMPLE_ACCESS_KEY | ||
SES_SECRET_ACCESS_KEY=EXAMPLE_SECRET_ACCESS_KEY | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
AWS_REGION=ap-southeast-2 | ||
|
||
APP_URL=http://localhost:3000 | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: "Tag Release and Deploy" | ||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
jobs: | ||
tagged-release: | ||
name: "Tagged Release" | ||
runs-on: "ubuntu-latest" | ||
|
||
steps: | ||
- uses: "marvinpinto/action-automatic-releases@latest" | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
prerelease: false | ||
|
||
deploy: | ||
name: "Deploy Production" | ||
needs: [tagged-release] | ||
uses: ./.github/workflows/deploy-prod.yml | ||
secrets: inherit |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,8 @@ ENV GOOGLE_CLIENT_ID " " | |
ENV GOOGLE_CLIENT_SECRET " " | ||
ENV SES_ACCESS_KEY " " | ||
ENV SES_SECRET_ACCESS_KEY " " | ||
ENV SENDER_EMAIL_ADDRESS "[email protected]" | ||
ENV MAIL_FROM "[email protected]" | ||
ENV REPLY_TO "[email protected]" | ||
ENV AWS_REGION " " | ||
ENV SQID_SECRET "ABC" | ||
ENV CRON_SECRET " " | ||
|
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
Oops, something went wrong.