File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed
src/Illuminate/Foundation/resources/exceptions/renderer/dist Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : ' update assets'
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - ' 12.x'
7
+ paths :
8
+ - ' /src/Illuminate/Foundation/resources/exceptions/renderer/package-lock.json'
9
+ workflow_dispatch :
10
+
11
+ jobs :
12
+ update :
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - name : Checkout Code
17
+ uses : actions/checkout@v4
18
+
19
+ - uses : actions/setup-node@v4
20
+ with :
21
+ node-version : 18
22
+
23
+ - name : Update Exception Renderer Assets
24
+ run : |
25
+ npm ci --prefix "./src/Illuminate/Foundation/resources/exceptions/renderer"
26
+ npm run build --prefix "./src/Illuminate/Foundation/resources/exceptions/renderer"
27
+
28
+ - name : Commit Compiled Files
29
+ uses : stefanzweifel/git-auto-commit-action@v5
30
+ with :
31
+ commit_message : Update Assets
You can’t perform that action at this time.
0 commit comments