Skip to content

Commit

Permalink
comment out workflwo
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto Cabrera committed Jan 11, 2024
1 parent 68c6a19 commit 5273568
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push:
branches: [develop, master]
pull_request:
branches: [develop, master]
# branches: [develop, master]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -232,7 +232,9 @@ jobs:
ios-deploy:
runs-on: macos-latest
needs: [test, eslint, typescript, prettier]
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
if: |
github.event_name == 'push' && github.ref == 'refs/heads/master' ||
github.event_name == 'pull_request' && contains(['develop', 'master'], github.base_ref)
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand Down Expand Up @@ -290,7 +292,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: fastlane-gym-logs
path: "/Users/runner/Library/Logs/gym/MissionHub-MissionHub.log"
path: '/Users/runner/Library/Logs/gym/MissionHub-MissionHub.log'

android-deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5273568

Please sign in to comment.