From ffb14fe72a221646b9f5b206691a8e40aeb67df6 Mon Sep 17 00:00:00 2001 From: HybridDog Date: Tue, 21 Sep 2021 17:51:56 +0200 Subject: [PATCH] fix yaml --- .github/workflows/main.yml | 54 +++++++++++++++++++------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index efedd98..87ecc9e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,36 +1,36 @@ name: main on: - push: - branches: - - master - tags: - - '*' + push: + branches: + - master + tags: + - '*' jobs: - build: - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v2 + build: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 - - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get install -y --no-install-recommends libpng-dev g++ + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y --no-install-recommends libpng-dev g++ - - name: Build - run: | - make -j "$(nproc)" + - name: Build + run: | + make -j "$(nproc)" - - name: Install - run: | - make install DESTDIR="/tmp/firstci" + - name: Install + run: | + make install DESTDIR="/tmp/firstci" - - name: Package - run: | - mkdir -p upload - mv /tmp/firstci upload + - name: Package + run: | + mkdir -p upload + mv /tmp/firstci upload - - uses: actions/upload-artifact@v2 - with: - name: "executable" - path: upload/firstci/png_ssim_down + - uses: actions/upload-artifact@v2 + with: + name: "executable" + path: upload/firstci/png_ssim_down