We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d234cfe commit c689d50Copy full SHA for c689d50
1 file changed
.github/workflows/node.js.yml
@@ -13,13 +13,21 @@ jobs:
13
build:
14
15
runs-on: ubuntu-latest
16
+ permissions:
17
+ contents: write
18
19
steps:
20
- uses: actions/checkout@v4
21
+ with:
22
+ ref: ${{ github.head_ref }}
23
- name: Use Node.js
24
uses: actions/setup-node@v4
25
with:
- node-version: '22.x'
26
+ node-version: '20.x'
27
cache: 'npm'
28
- run: npm ci
29
- run: npm run build --if-present
30
+ - uses: stefanzweifel/git-auto-commit-action@v5
31
32
+ file_pattern: "css/dist/**"
33
+ commit_message: Update dist
0 commit comments