Skip to content

Commit

Permalink
fix: types event trigger closed 추가
Browse files Browse the repository at this point in the history
- fastlane upload_prd_testflight if 구문 수정
  • Loading branch information
Do-hyun-Kim committed Oct 18, 2024
1 parent 5fb21d5 commit 835bf51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
branches:
- release
- develop
types:
- closed

jobs:
build:
Expand Down Expand Up @@ -60,7 +62,7 @@ jobs:
run: tuist generate

- name: fastlane upload_prd_testflight
if: ${{ github.ref == 'refs/heads/release' && github.event_name == 'push' }}
if: ${{ github.base_ref == 'release' && github.event_name == 'push' }}
env:
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
Expand Down

0 comments on commit 835bf51

Please sign in to comment.