Merge pull request #205 from lschaeffer313/develop #49
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: 🎉 Update version | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
conventional-commits-versionning: | |
name: ⬆️ Bump version | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🤖 Checkout code | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.TOKEN }} | |
- name: 🏃 Start semantic-release | |
id: release | |
uses: cycjimmy/semantic-release-action@v4 | |
with: | |
extra_plugins: | | |
@semantic-release/exec | |
@semantic-release/git | |
@semantic-release/github | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
- name: 📩 Push change to the branch develop | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: develop |