We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f93bd4b commit b358471Copy full SHA for b358471
.github/workflows/release.yml
@@ -5,18 +5,26 @@ on:
5
6
jobs:
7
build:
8
+ runs-on: windows-latest
9
strategy:
10
matrix:
11
backend:
12
# - libnode
13
- lua
14
# - python310
15
- quickjs
- runs-on: windows-latest
16
steps:
17
- uses: actions/checkout@v4
18
19
- uses: xmake-io/github-action-setup-xmake@v1
20
+
21
+ - uses: actions/cache@v4
22
+ with:
23
+ path: |
24
+ ~/AppData/Local/.xmake
25
+ key: xmake-${{ hashFiles('xmake.lua') }}
26
+ restore-keys: |
27
+ xmake-
28
29
- run: |
30
xmake repo -u
@@ -27,7 +35,7 @@ jobs:
35
36
xmake -w -y
37
- - uses: actions/upload-artifact@v3
38
+ - uses: actions/upload-artifact@v4
31
39
with:
32
40
name: legacy-script-engine-${{ matrix.backend }}-windows-x64-${{ github.sha }}
33
41
path: |
0 commit comments