diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81c4432..2c8c7a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,15 +23,9 @@ jobs: - uses: actions/checkout@v2 - name: Install build dependencies (apt) - run: | - sudo apt install libx11-dev libxcursor-dev libpng-dev + run: sudo apt install -y libx11-dev libxcursor-dev libpng-dev continue-on-error: false - - name: Set Up NodeJS 12.x - - uses: actions/setup-node@v1 - with: - node-version: "12.x" - - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" @@ -44,10 +38,10 @@ jobs: restore-keys: | ${{ runner.os }}-yarn- - - name: Set up Python 3.8 - uses: actions/setup-python@v2 + - name: Set Up NodeJS 12.x + - uses: actions/setup-node@v1 with: - python-version: "3.8" + node-version: "12.x" - name: Get pip cache directory path id: pip-cache-dir-path @@ -61,12 +55,16 @@ jobs: restore-keys: | ${{ runner.os }}-pip- + - name: Set up Python 3.8 + uses: actions/setup-python@v2 + with: + python-version: "3.8" + - name: Generating `macOSBigSur` Cursor Theme run: make - - name: Compressing Artifacts - 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