Skip to content

Commit

Permalink
output path and add usage optout for fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
souzamari committed Oct 24, 2024
1 parent a0852c3 commit 7eab19d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ios-sdk-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,21 @@ jobs:
build-demo-swift:
name: "Build Demo Swift"
runs-on: macos-14
env:
FL_OUTPUT_DIR: output

needs: [setup, sdk-tests]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Bundle install
run: bundle install
- name: Build Demo Swift
id: build-demo-swift
run: bundle exec fastlane demo_swift
- name: Store Artifacts
uses: actions/upload-artifact@v4
with:
name: demo-swift
path: ${{ github.workspace }}/${{ env.FL_OUTPUT_DIR }}/**
# - name: Store Artifacts
# uses: actions/upload-artifact@v4
# with:
# name: demo-swift
# path:

build-demo-objc:
name: "Build Demo Objective-C"
Expand All @@ -69,8 +69,8 @@ jobs:
run: bundle install
- name: Build Demo Objective-C
run: bundle exec fastlane demo_objc
- name: Store Artifacts
uses: actions/upload-artifact@v4
with:
name: demo-objc
path: ${{ github.workspace }}/${{ env.FL_OUTPUT_DIR }}/**
# - name: Store Artifacts
# uses: actions/upload-artifact@v4
# with:
# name: demo-objc
# path:
1 change: 1 addition & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
opt_out_usage
default_platform :ios

platform :ios do
Expand Down

0 comments on commit 7eab19d

Please sign in to comment.