0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 09:16:49 +01:00
posthog/.github/workflows/version-update.yml
2020-08-18 12:11:42 +02:00

29 lines
809 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`)\"" > 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>