Merge pull request #154 from exonet/trizz-patch-1 #44
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 Drafter | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
update-release-draft: | |
name: Update | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run release drafter | |
id: draft | |
uses: release-drafter/release-drafter@v6 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
outputs: | |
draft-version: ${{ steps.draft.outputs.tag_name }} | |
update-client-version: | |
name: Update CLIENT_VERSION with draft version | |
runs-on: ubuntu-latest | |
needs: update-release-draft | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: master | |
- name: Update `src/Powerdns.php` with draft version | |
run: | | |
sed -i "s/CLIENT_VERSION = 'v.*';/CLIENT_VERSION = '${{ needs.update-release-draft.outputs.draft-version }}';/g" src/Powerdns.php | |
- name: Apply version changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Auto update drafter version in CLIENT_VERSION |