Skip to content

Add nl. Fix translation problems #2

Add nl. Fix translation problems

Add nl. Fix translation problems #2

Workflow file for this run

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"