Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@ jobs:
with:
fetch-depth: 0

- name: Get versions
id: versions
shell: bash
run: |
echo "RELEASE_VERSION=$(grep "s.version = " AlgoliaSearchClient.podspec | cut -d "'" -f2)" >> $GITHUB_OUTPUT

- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -30,13 +24,6 @@ jobs:
- name: Install CocoaPods
run: gem install cocoapods

- name: Publish release on Github
run: |
set -eo pipefail
gh release create ${{ steps.versions.outputs.RELEASE_VERSION }} --title ${{ steps.versions.outputs.RELEASE_VERSION }} -F CHANGELOG.md --target ${{ github.sha }}
env:
GH_TOKEN: ${{ github.token }}

- name: Publish on CocoaPods
run: |
set -eo pipefail
Expand Down
Loading