Skip to content

Commit c524b23

Browse files
committed
debug
1 parent 58918d5 commit c524b23

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: windows-2022
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212

1313
- name: Build LuaJIT
1414
shell: cmd
@@ -62,14 +62,14 @@ jobs:
6262
cpack
6363
6464
- name: Upload build zip
65-
uses: actions/upload-artifact@v3
65+
uses: actions/upload-artifact@v4
6666
with:
6767
name: package
6868
path: build/*.zip
6969
retention-days: 2
7070

7171
- name: Upload docs
72-
uses: actions/upload-artifact@v3
72+
uses: actions/upload-artifact@v4
7373
with:
7474
name: docs
7575
path: build/Documentation/_build/
@@ -87,13 +87,19 @@ jobs:
8787
runs-on: ubuntu-latest
8888
steps:
8989
- name: Checkout 🛎️
90-
uses: actions/checkout@v3
90+
uses: actions/checkout@v4
91+
92+
- run: touch .after
93+
- run: ls -R >.before
9194

9295
- name: Download Artifacts
93-
uses: actions/download-artifact@v3
96+
uses: actions/download-artifact@v4
9497
with:
9598
name: docs
9699

100+
- run: ls -R >.after
101+
- run: git diff --no-index .before .after
102+
97103
- name: nojekyll
98104
run: touch docs/.nojekyll
99105

0 commit comments

Comments
 (0)