release-branch #175
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: release branch | |
on: | |
repository_dispatch: | |
types: [release-branch] | |
env: | |
ACP_VERSION: ${{ github.event.client_payload.acp_version }} | |
jobs: | |
release-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set ACP version | |
run: sed -i.bak "s/ACP_VERSION ?=.*/ACP_VERSION ?= ${{ env.ACP_VERSION }}/" Makefile && rm -rf Makefile.bak | |
- name: ACP version in charts | |
run: CI=true make bump-acp-version |