Merge pull request #82 from lkssmnt/csv-linebreaks-fix #6
This file contains hidden or 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: Auto Tag | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| tag: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Git | |
| run: | | |
| git config user.name github-actions | |
| git config user.email [email protected] | |
| - name: Create tag | |
| run: | | |
| VERSION=$(jq -r .version composer.json) | |
| git tag "v$VERSION" | |
| git push origin "v$VERSION" |