diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 0dbff3e6..47dde670 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -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 @@ -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 }}" diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a139f3b9..83688bf5 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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}")