Skip to content

Commit

Permalink
Update language
Browse files Browse the repository at this point in the history
  • Loading branch information
levieggertcru committed Jun 20, 2024
1 parent 7234807 commit 992bcd4
Showing 1 changed file with 7 additions and 9 deletions.
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}}"

0 comments on commit 992bcd4

Please sign in to comment.