We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc63130 commit c31ef0fCopy full SHA for c31ef0f
.github/workflows/nodejs-hello-world.yml
@@ -27,4 +27,13 @@ jobs:
27
28
- name: Run the app
29
run: node index.js
30
-
+
31
+ - name: Configure AWS credentials
32
+ uses: aws-actions/configure-aws-credentials@v1
33
+ with:
34
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
35
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
36
37
+ - name: Sync build to S3
38
+ run: |
39
+ aws s3 sync ./build s3://${{ secrets.S3_BUCKET_NAME }} --delete
0 commit comments