From b74fd0aac355189333789ad0381898ab6114a04e Mon Sep 17 00:00:00 2001 From: an-lee Date: Fri, 1 Mar 2024 10:54:24 +0800 Subject: [PATCH] fix action syntax --- .github/workflows/build-enjoy-app.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-enjoy-app.yml b/.github/workflows/build-enjoy-app.yml index 470804d4..a30e9655 100644 --- a/.github/workflows/build-enjoy-app.yml +++ b/.github/workflows/build-enjoy-app.yml @@ -26,8 +26,8 @@ jobs: node-version: 20 - name: Install dependencies run: yarn install - - if: ${{ github.event.inputs.os }} == 'macos-latest' - name: Install certificate + - name: Install certificate + if: ${{ github.event.inputs.os }} == 'macos-latest' run: ./enjoy/scripts/add-macos-cert.sh - name: Make env: @@ -44,6 +44,6 @@ jobs: with: name: Enjoy-${{ github.event.inputs.os }}-${{ github.event.inputs.arch }}-build path: | - ./enjoy/out/make/zip/${{ github.event.inputs.arch }}/* - ./enjoy/out/make/dep/${{ github.event.inputs.arch }}/* - ./enjoy/out/make/rpm/${{ github.event.inputs.arch }}/* + ./enjoy/out/make/zip/${{ github.event.inputs.arch }}/*.zip + ./enjoy/out/make/dep/${{ github.event.inputs.arch }}/*.dep + ./enjoy/out/make/rpm/${{ github.event.inputs.arch }}/*.rpm