From e9b9a64dea2dc88f7b324dda9bafd12624448068 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Wed, 3 Feb 2021 18:52:07 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Syntax=20error=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 60 ++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0fb74af..1ae2be8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,16 +21,15 @@ jobs: steps: - uses: actions/checkout@v2 - + - name: Install build dependencies (apt) - run: | - sudo apt install -y libx11-dev libxcursor-dev libpng-dev + run: sudo apt install -y libx11-dev libxcursor-dev libpng-dev continue-on-error: false - + - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - + - name: Caching yarn packages uses: actions/cache@v2 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) @@ -39,9 +38,9 @@ jobs: key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - + - name: Set Up NodeJS 12.x - - uses: actions/setup-node@v1 + uses: actions/setup-node@v1 with: node-version: "12.x" @@ -58,31 +57,32 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - # - name: Set up Python 3.8 - # uses: actions/setup-python@v2 - # with: - # python-version: "3.8" + - name: Set up Python 3.8 + uses: actions/setup-python@v2 + with: + python-version: "3.8" - # - name: Generating `macOSBigSur` Cursor Theme - # run: make + - name: Generating `macOSBigSur` Cursor Theme + run: make + continue-on-error: false - # - name: Compressing UNIX theme - # run: tar -cvzf macOSBigSur.tar.gz themes/macOSBigSur + - name: Compressing UNIX theme + run: tar -cvzf macOSBigSur.tar.gz themes/macOSBigSur - # - name: Uploading `bitmaps` artifact - # uses: actions/upload-artifact@v2 - # with: - # name: bitmaps - # path: bitmaps/* + - name: Uploading `bitmaps` artifact + uses: actions/upload-artifact@v2 + with: + name: bitmaps + path: bitmaps/* - # - name: Uploading `macOSBigSur` UNIX Theme artifact - # uses: actions/upload-artifact@v2 - # with: - # name: macOSBigSur - # path: macOSBigSur.tar.gz + - name: Uploading `macOSBigSur` UNIX Theme artifact + uses: actions/upload-artifact@v2 + with: + name: macOSBigSur + path: macOSBigSur.tar.gz - # - name: Uploading `macOSBigSur` Windows Theme artifact - # uses: actions/upload-artifact@v2 - # with: - # name: macOSBigSur_Windows - # path: themes/macOSBigSur_Windows/* + - name: Uploading `macOSBigSur` Windows Theme artifact + uses: actions/upload-artifact@v2 + with: + name: macOSBigSur_Windows + path: themes/macOSBigSur_Windows/*