Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Chetan11-dev committed Nov 28, 2024
1 parent 4f492c5 commit 42144bd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,11 +283,11 @@ AWS_SECRET_ACCESS_KEY # AWS secret key
```
Replace "your-s3-bucket-name" with the name of your S3 bucket.

2. Add a new script called "package-publish" to the "scripts" section of your "package.json" file:
2. Add a new script called "package:publish" to the "scripts" section of your "package.json" file:
```json
{
"scripts": {
"package-publish": "ANY_PRE_BUILD_STEPS && electron-builder build --publish always && ANY_POST_BUILD_STEPS"
"package:publish": "ANY_PRE_BUILD_STEPS && electron-builder build --publish always && ANY_POST_BUILD_STEPS"
}
}
```
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: |
npm run package-publish
npm run package:publish
package-windows:
Expand All @@ -352,7 +352,7 @@ jobs:
- name: Package and Upload to S3
run: |
npm run package-publish
npm run package:publish
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand All @@ -377,7 +377,7 @@ jobs:
- name: Package and Upload to S3
run: |
npm run package-publish
npm run package:publish
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down

0 comments on commit 42144bd

Please sign in to comment.