Fixed to many =

This commit is contained in:
Florian Bouillon 2021-04-26 12:31:44 +02:00 committed by GitHub
parent be61e4c747
commit 4bb9cc3a7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ jobs:
- name: Push changes - name: Push changes
uses: ad-m/github-push-action@master uses: ad-m/github-push-action@master
if: ${{ steps.commit.outcome === 'success' && (github.event_name == 'push' || github.event_name == 'repository_dispatch') }} if: ${{ steps.commit.outcome == 'success' && (github.event_name == 'push' || github.event_name == 'repository_dispatch') }}
with: with:
github_token: ${{ secrets.PUSH_TOKEN }} github_token: ${{ secrets.PUSH_TOKEN }}
directory: ./dist directory: ./dist
@ -69,7 +69,7 @@ jobs:
- name: Upload - name: Upload
run: yarn upload run: yarn upload
if: ${{ steps.commit.outcome === 'success' && (github.event_name == 'push' || github.event_name == 'repository_dispatch') }} if: ${{ steps.commit.outcome == 'success' && (github.event_name == 'push' || github.event_name == 'repository_dispatch') }}
env: env:
UPLOAD_REMOTE: ${{ secrets.UPLOAD_REMOTE }} UPLOAD_REMOTE: ${{ secrets.UPLOAD_REMOTE }}
UPLOAD_DIST: ${{ secrets.UPLOAD_DIST }} UPLOAD_DIST: ${{ secrets.UPLOAD_DIST }}