Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:
uses: robinraju/release-downloader@v1
with:
repository: nitros9project/toolshed
fileName: toolshed-*.tgz
fileName: toolshed-unix*.tgz
latest: true
extract: false
out-file-path: toolshed

- name: Install Toolshed
run: |
sudo tar xvf toolshed/toolshed-[0-9]*.*.tgz --strip-components=1 -C /usr/local/bin
sudo tar xvf toolshed/toolshed-unix*.tgz --strip-components=1 -C /usr/local/bin
sudo ln -s /bin/bash /usr/local/bin/xroar

- name: Install Lwtools
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
uses: robinraju/release-downloader@v1
with:
repository: nitros9project/toolshed
fileName: toolshed-*.tgz
fileName: toolshed-unix*.tgz
latest: true
extract: false
out-file-path: toolshed

- name: Install Toolshed
run: |
sudo tar xvf toolshed/toolshed-[0-9]*.*.tgz --strip-components=1 -C /usr/local/bin
sudo tar xvf toolshed/toolshed-unix*.tgz --strip-components=1 -C /usr/local/bin
sudo ln -s /bin/bash /usr/local/bin/xroar

- name: Install Lwtools
Expand All @@ -55,10 +55,10 @@ jobs:
run: ls -al

- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: "craigtst-*.tgz"
files: craigtst-*.tgz


2 changes: 1 addition & 1 deletion Jamfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

SubDir coco-test ;

disk = [ FDirName $(TOP) craigtst.dsk ] ;
disk = [ FDirName $(SUBDIR) craigtst.dsk ] ;

ASM = [ Glob $(SUBDIR) : *.asm ] ;

Expand Down