Skip to content

Commit 874bcb7

Browse files
authored
Drop quotes from make release workflow (#36)
1 parent 6aed92b commit 874bcb7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
[ -f build/unix/toolshed-*.zip ] && ls build/unix/toolshed-*.zip | xargs -I {} bash -c 'echo; md5sum {}; ls -al --color=auto {}; unzip -l -v {}'
4040
4141
- name: Release
42-
uses: softprops/action-gh-release@v1
42+
uses: softprops/action-gh-release@v2
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545
with:
4646
files: |
47-
"build/unix/toolshed-*.tgz"
48-
"build/unix/toolshed-*.zip"
47+
build/unix/toolshed-*.tgz
48+
build/unix/toolshed-*.zip
4949

build/unix/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ else
1414
INSTALLDIR = /usr/local/bin
1515
DOCDIR = /usr/local/share/toolshed
1616
endif
17-
APPS = ar2 os9 mamou cecb decb tocgen makewav dis68
17+
APPS = ar2 os9 mamou cecb decb tocgen makewav dis68 lst2cmt
1818

1919
DIRS = libtoolshed libnative libcecb librbf libcoco libdecb libmisc libsys \
20-
decb cecb os9 makewav tocgen \
20+
decb cecb os9 makewav tocgen lst2cmt \
2121
dis68 mamou ar2 \
2222
doc
2323

@@ -27,7 +27,7 @@ MAKEPACKAGE = zip -9
2727
else
2828
PACKAGENAME = $(PACKAGENAME_UNIX)
2929
MAKEPACKAGE = tar czvf
30-
DIRS := $(DIRS) cocofuse lst2cmt unittest
30+
DIRS := $(DIRS) cocofuse unittest
3131
APPS := $(APPS) cocofuse
3232
endif
3333

build/unix/lst2cmt/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ vpath %.c ../../../lst2cmt
66
CFLAGS += -I../../../include -Wall
77
#LDFLAGS +=
88

9-
lst2cmt: lst2cmt.o
9+
lst2cmt$(SUFEXE): lst2cmt.o
1010
$(CC) -o $@ $^ $(LDFLAGS)
1111

1212
clean:

0 commit comments

Comments
 (0)