Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/coolgirl-multicart/coolgirl-multirom-builder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-06 22:01:26 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-06 22:01:26 +0300
commit79a13fcdb0a587e9c4b693e94795e58fa3efce5a (patch)
tree21f55117c79390bb95d1ff44b3a7f59be2e9a211
parent95d31008cc628f964e457a533f6b26b1ca6b1d80 (diff)
build.yaml
-rw-r--r--.github/workflows/build.yaml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 3ae1dee..8211b09 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -18,8 +18,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- - name: Checkout submodules
- run: git submodule update --init --recursive
+ with:
+ submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
@@ -28,7 +28,7 @@ jobs:
run: sudo apt-get install gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu
- name: Copy main files
run: >-
- mkdir -p ${{ env.OUTPUT_DIR }}
+ mkdir -p ${{ env.OUTPUT_DIR }} &&
cp -fR *.asm Makefile LICENSE README.md configs spec demos games homebrew output
- name: Build NesTiler for Linux-x64
run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r linux-x64 --no-self-contained -o ${{ env.TOOLS_DIR }}
@@ -75,8 +75,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- - name: Checkout submodules
- run: git submodule update --init --recursive
+ with:
+ submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
@@ -85,7 +85,7 @@ jobs:
run: brew install argp-standalone
- name: Copy main files
run: >-
- mkdir -p ${{ env.OUTPUT_DIR }}
+ mkdir -p ${{ env.OUTPUT_DIR }} &&
cp -fR *.asm Makefile LICENSE README.md configs spec demos games homebrew output
- name: Build NesTiler for MacOS-x64
run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r mac-x64 --no-self-contained -o ${{ env.TOOLS_DIR }}
@@ -106,8 +106,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- - name: Checkout submodules
- run: git submodule update --init --recursive
+ with:
+ submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
@@ -123,7 +123,7 @@ jobs:
libargp-devel
- name: Copy main files
run: >-
- mkdir -p ${{ env.OUTPUT_DIR }}
+ mkdir -p ${{ env.OUTPUT_DIR }} &&
cp -fR *.asm Makefile LICENSE README.md configs spec demos games homebrew output
- name: Build NesTiler for Win-x64
run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r win-x64 --no-self-contained -o ${{ env.TOOLS_DIR }}