Skip to content

Commit

Permalink
Update Fastlane Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
PSchmiedmayer committed Jan 11, 2025
1 parent d8903d6 commit b61089a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
outputs:
appidentifier: ${{ vars.APP_IDENTIFIER }}
provisioningProfileName: ${{ vars.PROVISIONING_PROFILE_NAME }}
version: ${{ steps.vars.outputs.version }}
version: ${{ steps.script.outputs.version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -95,7 +95,8 @@ jobs:
with:
semver_only: true
initial_version: "2.0.1"
- run: |
- id: script
run: |
echo "Injecting Environment Variables In Deployment Workflow ..."
echo "appidentifier: ${{ vars.APP_IDENTIFIER }}"
echo "provisioningProfileName: ${{ vars.PROVISIONING_PROFILE_NAME }}"
Expand Down
2 changes: 2 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ platform :ios do
versionname = options[:versionname].to_s.strip.empty? ? APP_CONFIG[:default_version_name] : options[:versionname]
releasenotes = options[:releasenotes].to_s.strip.empty? ? APP_CONFIG[:default_release_notes] : options[:releasenotes]

releasenotes = releasenotes.gsub('’', "'")

UI.message("Using environment: #{environment}")
UI.message("Using app identifier: #{appidentifier}")
UI.message("Using provisioning profile: #{provisioningProfile}")
Expand Down

0 comments on commit b61089a

Please sign in to comment.