Skip to content

Commit

Permalink
chore(deps): bump the gha group in /.github/workflows with 1 update (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Mar 22, 2024
1 parent 0fa35ab commit 964bc10
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
publish:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected].1
- uses: actions/[email protected].2
- uses: actions/[email protected]
with:
node-version: "20.5.1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/[email protected].1
uses: actions/[email protected].2
- name: Get Node version from Node manifest
run: echo "NODE_VER=$(curl -s https://nwjs.io/versions | jq -r ".versions[0].components.node")" >> $GITHUB_ENV
- name: Setup Node
Expand Down
15 changes: 8 additions & 7 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
module.exports = function (grunt) {
grunt.initConfig({
nwjs: {
options: {
mode: "get",
version: "0.85.0",
flavor: "sdk",
glob: false,
},
src: "test/app",
get: {
options: {
mode: "get",
version: "0.85.0",
flavor: "sdk"
},
src: "test/app",
}
},
});

Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ When globbing is enabled:
```patch
grunt.initConfig({
nwjs: {
options: {
get: {
options: {
mode: "build",
- srcDir: "./package.json ./app/**/*",
version: "0.85.0",
},
+ src: [ "./package.json", "./app/**/*" ],
},
},
});
```
Expand All @@ -37,15 +39,17 @@ When globbing is enabled:
```patch
grunt.initConfig({
nwjs: {
options: {
get: {
options: {
mode: "get",
- srcDir: "./app",
version: "0.85.0",
glob: false,
},
+ src: "./app",
},
},
});
```

Refer to `nw-builder`'s [docs](https://nwutils.io/nw-builder/) to learn what options to input.
Refer to `nw-builder`'s [docs](https://github.com/nwutils/nw-builder) to learn what options to input.

0 comments on commit 964bc10

Please sign in to comment.