Skip to content

Commit

Permalink
adds tgz to search regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
damirka committed May 17, 2024
1 parent 067e2c5 commit d167f24
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,5 +205,4 @@ jobs:
repo: MystenLabs/sui
platform: ubuntu
cache: enable
extension: '.tgz'
- run: sui --version
2 changes: 1 addition & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function run() {
let extMatchRegexForm = "";
if (extMatching) {
if (extension === "") {
extMatchRegexForm = "\.(tar.gz|zip)";
extMatchRegexForm = "\.(tar.gz|zip|tgz)";
core.info(`==> Using default file extension matching: ${extMatchRegexForm}`);
}
else {
Expand Down

0 comments on commit d167f24

Please sign in to comment.