Version: Set Version #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Version: Set Version" | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
required: true | |
description: "New Version Number" | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ssh-key: ${{ secrets.HOMEASSISTANT_SSH_DEPLOY_KEY }} | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.1' | |
bundler-cache: true | |
- run: "bundle exec fastlane set_version version:${{ github.event.inputs.version }}" | |
- name: Commit changes | |
id: commit | |
run: | | |
source Configuration/Version.xcconfig | |
git config --global user.name 'Home Assistant Bot' | |
git config --global user.email '[email protected]' | |
git add Configuration/Version.xcconfig | |
git commit -m "Bump Build to $MARKETING_VERSION ($CURRENT_PROJECT_VERSION)" | |
git clean -xfd | |
echo ::set-output name=pr_title::"$(git log -1 --pretty='%s')" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
base: master | |
branch: create-pull-request/bump_build | |
title: ${{ steps.commit.outputs.pr_title }} | |
body: "Automatically created by ${{ github.actor }}." |