Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Remove using local branch and action logging #67

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ jobs:
current_version=$(awk -F"'" '/s.version *=/ {print $2}' "$FILE_PATH")
echo "version=$current_version" >> $GITHUB_OUTPUT

- name: Print branch and version info
run: |
echo "PersonaClick-Branch: ${{ env.GITHUB_REF }}"
echo "PersonaClick-Version: ${{ steps.version.outputs.version }}"

- name: Create release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
5 changes: 2 additions & 3 deletions PersonaClick.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ Pod::Spec.new do |s|
s.name = 'PersonaClick'
s.version = '3.6.43'


s.summary = 'PersonaClick SDK for iOS platform - the wide toolset for eCommerce apps. This SDK can be used to integrate in your own app for iOS in few steps.'
s.readme = 'https://reference.api.personaclick.com/#{spec.version.to_s}/README.md'

Expand All @@ -16,9 +15,9 @@ Pod::Spec.new do |s|
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'PersonaClick' => '«[email protected]»' }

s.source = { :git => "https://github.com/PersonaClick/ios-sdk.git", :branch => ENV['CURRENT_BRANCH'] }
s.source = { :git => "https://github.com/PersonaClick/ios-sdk.git", :branch => "master" }

s.exclude_files = 'PersonaClick/Classes/Model/InitResponse.swift'
s.exclude_files = 'PersonaClick/Classes/Model/InitResponse.swift'

s.ios.deployment_target = '12.0'

Expand Down
Loading