Skip to content

fix token generation #6

fix token generation

fix token generation #6

Workflow file for this run

name: Update Version
on:
push:
tags:
- 'v*'
jobs:
update-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- name: Update version in main.php
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
run: |
git config --local user.email "[email protected]"
git config --local user.name "Carl Handy"
chmod +x .github/scripts/update-version.sh
.github/scripts/update-version.sh