Skip to content

Commit 0bc4e8e

Browse files
committed
more debugging
1 parent 15c119e commit 0bc4e8e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
cd /work/repo
2727
./configure --with-lisp=sbcl --enable-distribution
2828
make
29+
ls
30+
pwd
2931
#- name: save artifact
3032
# uses: actions/upload-artifact@v4
3133
# with:

.github/workflows/mac.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
run: |
2525
./configure --with-lisp=sbcl --enable-distribution
2626
make
27+
ls
28+
pwd
2729
#- name: save binary
2830
# uses: actions/upload-artifact@v4
2931
# with:

.github/workflows/windows.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,21 @@ jobs:
3131
shell: pwsh
3232
run: |
3333
make
34-
pwd || true
3534
ls || true
35+
pwd || true
3636
#- name: save binary
3737
# uses: actions/upload-artifact@v4
3838
# with:
3939
# name: cafeobj-sbcl-win64
4040
# path: cafeobj-*-sbcl-win64.zip
4141
- name: check
42-
run: ls
42+
run: |
43+
ls
44+
ls ${{ github.workspace }}
4345
- name: Release
4446
uses: AButler/[email protected]
4547
with:
46-
files: cafeobj-*-sbcl-win64.zip
48+
files: ${{ github.workspace }}/cafeobj-*-sbcl-win64.zip
4749
repo-token: ${{ secrets.GITHUB_TOKEN }}
4850
release-tag: ${{ github.ref_name }}
4951

0 commit comments

Comments
 (0)