Skip to content

Commit

Permalink
sharing files between jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ygit committed Dec 19, 2023
1 parent c6d7a63 commit c461b90
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,12 @@ jobs:
export-method: ad-hoc
export-options: packages/react-native-room-kit/example/ios/ExportOptions.plist

- name: Publish artifact
uses: actions/upload-artifact@v4
with:
name: ipa
path: output.ipa

# - name: Build iOS App for TestFlight
# uses: yukiarrr/[email protected]
# with:
Expand Down Expand Up @@ -169,14 +175,19 @@ jobs:
timeout-minutes: 30

steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: ipa

- name: Upload artifact to Firebase App Distribution
uses: wzieba/[email protected]
with:
appId: ${{ secrets.FIREBASE_APP_ID }}
serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
groups: internal, External
releaseNotesFile: ./packages/react-native-room-kit/example/ExampleAppChangelog.txt
file: $GITHUB_WORKSPACE/output.ipa
file: ipa/output.ipa

# - name: Post Slack Notification
# uses: rtCamp/[email protected]
Expand Down

0 comments on commit c461b90

Please sign in to comment.