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

Update language #18

Merged
merged 1 commit into from
Jun 20, 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
16 changes: 7 additions & 9 deletions .github/workflows/create-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,21 +158,19 @@ jobs:
run: |
printf '%s\n' "$VERSION"

bump_podspec_version:
name: Bump Podspec Version
create_version_branch_and_pull_request:
name: Create Version Branch and PR
runs-on: ubuntu-latest
needs: [ current_version, new_version ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Bump Podspec Version
- name: Set Podspec Version to New Version
run: |
sed -i "s/s.version = '${{ needs.current_version.outputs.version }}'/s.version = '${{ needs.new_version.outputs.version }}'/g" LocalizationServices.podspec
- name: Push Commits To Remote
run: git push
- name: Create Version Bump Pull Request
- name: Create Version Branch and PR
uses: peter-evans/create-pull-request@v6
with:
branch: "bump-version-to-${{ needs.new_version.outputs.version }}"
title: "Bump version"
commit-message: "Bump version to ${{needs.new_version.outputs.version}}"
branch: "versions/${{ needs.new_version.outputs.version }}"
title: "Version ${{needs.new_version.outputs.version}}"
commit-message: "Increase version to ${{needs.new_version.outputs.version}}"
Loading