-
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.
- Loading branch information
1 parent
2865642
commit 98e4325
Showing
4 changed files
with
41 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Upload Website | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-1 | ||
|
||
- name: Build | ||
run: yarn install && yarn build | ||
|
||
- name: Deploy bootstrap config | ||
run: | | ||
aws s3 sync ./bootstrap-4.env s3://bootstrap-peerchecker-com-dist --delete | ||
aws cloudfront create-invalidation --distribution-id ETKLQVXX2I9CQ --paths '/*'; |
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,11 @@ | ||
# Peerbit Bootstrap 🚀 | ||
|
||
Relay server for bootstrapping Peerbit applications | ||
|
||
This environment file contains a list of addresses you can initially connect to: | ||
|
||
Check the Peerbit client version you are using. E.g. for v4 use: | ||
|
||
``` | ||
https://raw.githubusercontent.com/dao-xyz/peerbit-bootstrap/master/bootstrap-4.env | ||
``` |
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,2 @@ | ||
/dns4/2d19032a282979bcec368ede9dc7fc650c1d70ea.peerchecker.com/tcp/4003/wss/p2p/12D3KooWG9kxG57c14GAULuvyWANmduhV9yB8RKQ13MmJkckc6sM | ||
/dns4/4699f82aabe2b02544a332f883395ff62f0cf452.peerchecker.com/tcp/4003/wss/p2p/12D3KooWSnkwgDSJo8MimspNXmeu87X9cdYaPiPYfz3TvkgKw76k |
This file was deleted.
Oops, something went wrong.