Skip to content

Commit

Permalink
Version Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
NotCoffee418 committed Sep 1, 2023
1 parent 2b18711 commit 1c915ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Upload ZIP to S3
uses: NotCoffee418/s3-zip-upload@v1.2
uses: NotCoffee418/s3-zip-upload@v1.3
env:
AWS_SECRET_ID: ${{ secrets.AWS_SECRET_ID }}
AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions release/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63530,11 +63530,11 @@ Minimatch.prototype.matchOne = function (file, pattern, partial) {

// replace stuff like \* with *
function globUnescape (s) {
return s.replace(/\\(.)/g, '$1')
return s.replace(/\\(.)/g, '$1');
}

function regExpEscape (s) {
return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&')
return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
}


Expand Down

0 comments on commit 1c915ee

Please sign in to comment.