From 79a13fcdb0a587e9c4b693e94795e58fa3efce5a Mon Sep 17 00:00:00 2001 From: Alexey 'Cluster' Avdyukhin Date: Sun, 6 Nov 2022 23:01:26 +0400 Subject: build.yaml --- .github/workflows/build.yaml | 18 +++++++++--------- 1 file 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 }} -- cgit v1.2.3