-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* config: only run deploy-preview on prs * config: deploy dist folder in packages/embed for embed staging deploy * fix: deploy-staging/components use single quotes in args ref: jakejarvis/s3-sync-action#51 (comment) * fix: remove duplicate branches entry
- Loading branch information
1 parent
b9d8ed8
commit 46cf411
Showing
2 changed files
with
3 additions
and
6 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
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 |
---|---|---|
|
@@ -19,8 +19,8 @@ jobs: | |
uses: jakejarvis/[email protected] | ||
with: | ||
args: >- | ||
--follow-symlinks --delete --exclude "*" --include | ||
"packages/components/smart-camera-web.js" | ||
--follow-symlinks --delete --exclude '*' --include | ||
'packages/components/smart-camera-web.js' | ||
env: | ||
AWS_S3_BUCKET: "${{ secrets.AWS_S3_BUCKET }}" | ||
AWS_ACCESS_KEY_ID: "${{ secrets.AWS_ACCESS_KEY_ID }}" | ||
|
@@ -56,5 +56,5 @@ jobs: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_REGION: ${{ secrets.AWS_REGION }} | ||
SOURCE_DIR: "./dist" | ||
SOURCE_DIR: "./packages/embed/dist" | ||
DEST_DIR: "inline/staging" |