Skip to content

Commit

Permalink
Fix build ci
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Oct 15, 2022
1 parent 697bb99 commit 4ea2bd8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ jobs:
app/build/macos/Build/Products/Release/butterfly.app
deploy:
runs-on: ubuntu-22.04
if: github.event_name == 'push' && ${{ secrets.CI_PAT != '' }}
if: github.event_name == 'push'
needs:
- build-apk
- build-windows
Expand All @@ -322,8 +322,10 @@ jobs:
steps:
- name: ⬆️ Checkout
uses: actions/checkout@v3
env:
CI_PAT: ${{ secrets.CI_PAT }}
with:
token: ${{ secrets.CI_PAT }}
token: ${{ env.CI_PAT }}
- name: Setup git
run: |
git config --global user.email "[email protected]"
Expand Down

0 comments on commit 4ea2bd8

Please sign in to comment.