0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/.github/workflows/version-update.yml
Tim Glaser 764e10696b
Fix version (#1462)
* Fix version

* Black two files

Co-authored-by: Twixes <dev@twixes.com>
2020-08-18 19:09:42 +02:00

29 lines
817 B
YAML

name: Version Update
on:
push:
tags:
- '*.**'
jobs:
update-version:
name: Update VERSION
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
ref: master
fetch-depth: 0
- name: Edit version.py
run: echo "VERSION = \"$(git describe --tags `git rev-list --tags --max-count=1`)\"" > posthog/version.py
- name: Commit update
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'Update VERSION'
commit_user_name: PostHog Bot
commit_user_email: hey@posthog.com
commit_author: PostHog Bot <hey@posthog.com>