Skip to content

Merge pull request #42 from exonet/dependabot/github_actions/actions/… #19

Merge pull request #42 from exonet/dependabot/github_actions/actions/…

Merge pull request #42 from exonet/dependabot/github_actions/actions/… #19

---
name: Release Drafter
on:
push:
branches:
- master
jobs:
update-release-draft:
name: Update
runs-on: ubuntu-latest
steps:
- name: Run release drafter
uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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/Client.php` with draft version
run: |
sed -i "s/CLIENT_VERSION = 'v.*';/CLIENT_VERSION = '${{ needs.update-release-draft.outputs.draft-version }}';/g" src/Client.php
- name: Apply version changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Auto update drafter version in CLIENT_VERSION