File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 26
26
cd /work/repo
27
27
./configure --with-lisp=sbcl --enable-distribution
28
28
make
29
+ ls
30
+ pwd
29
31
# - name: save artifact
30
32
# uses: actions/upload-artifact@v4
31
33
# with:
Original file line number Diff line number Diff line change 24
24
run : |
25
25
./configure --with-lisp=sbcl --enable-distribution
26
26
make
27
+ ls
28
+ pwd
27
29
# - name: save binary
28
30
# uses: actions/upload-artifact@v4
29
31
# with:
Original file line number Diff line number Diff line change @@ -31,19 +31,21 @@ jobs:
31
31
shell : pwsh
32
32
run : |
33
33
make
34
- pwd || true
35
34
ls || true
35
+ pwd || true
36
36
# - name: save binary
37
37
# uses: actions/upload-artifact@v4
38
38
# with:
39
39
# name: cafeobj-sbcl-win64
40
40
# path: cafeobj-*-sbcl-win64.zip
41
41
- name : check
42
- run : ls
42
+ run : |
43
+ ls
44
+ ls ${{ github.workspace }}
43
45
- name : Release
44
46
45
47
with :
46
- files : cafeobj-*-sbcl-win64.zip
48
+ files : ${{ github.workspace }}/ cafeobj-*-sbcl-win64.zip
47
49
repo-token : ${{ secrets.GITHUB_TOKEN }}
48
50
release-tag : ${{ github.ref_name }}
49
51
You can’t perform that action at this time.
0 commit comments