Skip to content

chore(swift): github releases are created by the monorepo #3928

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

Merged
merged 5 commits into from
Oct 9, 2024
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