Skip to content

Commit 178c6b6

Browse files
committed
Disabled master S3 deployment
1 parent 566f1d2 commit 178c6b6

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

.github/workflows/master-deployment.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -25,29 +25,29 @@ jobs:
2525
build: yarn run build
2626
start: yarn run dev
2727
wait-on: 'http://localhost:3000'
28-
build-s3:
29-
needs: build-test
30-
runs-on: ubuntu-latest
31-
strategy:
32-
matrix:
33-
node-version: [18.x]
34-
steps:
35-
- uses: actions/checkout@v2
36-
- name: Use Node.js ${{ matrix.node-version }}
37-
uses: actions/setup-node@v1
38-
with:
39-
node-version: ${{ matrix.node-version }}
40-
- run: rm -rf docs
41-
- run: yarn install
42-
- run: yarn run build
43-
- name: Set AWS credentials
44-
uses: aws-actions/configure-aws-credentials@v1
45-
with:
46-
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
47-
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
48-
aws-region: us-west-1
49-
- run: curl ${{ secrets.INDEX_HTML_DEPLOYMENT_URL }} > dist/index.html
50-
- run: aws s3 rm s3://neodash.graphapp.io/ --recursive && aws s3 sync dist s3://neodash.graphapp.io/ --acl public-read
28+
# build-s3:
29+
# needs: build-test
30+
# runs-on: ubuntu-latest
31+
# strategy:
32+
# matrix:
33+
# node-version: [18.x]
34+
# steps:
35+
# - uses: actions/checkout@v2
36+
# - name: Use Node.js ${{ matrix.node-version }}
37+
# uses: actions/setup-node@v1
38+
# with:
39+
# node-version: ${{ matrix.node-version }}
40+
# - run: rm -rf docs
41+
# - run: yarn install
42+
# - run: yarn run build
43+
# - name: Set AWS credentials
44+
# uses: aws-actions/configure-aws-credentials@v1
45+
# with:
46+
# aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
47+
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
48+
# aws-region: us-west-1
49+
# - run: curl ${{ secrets.INDEX_HTML_DEPLOYMENT_URL }} > dist/index.html
50+
# - run: aws s3 rm s3://neodash.graphapp.io/ --recursive && aws s3 sync dist s3://neodash.graphapp.io/ --acl public-read
5151
build-docker:
5252
needs: build-test
5353
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)