0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/.github/workflows/version-update.yml

29 lines
817 B
YAML
Raw Normal View History

name: Version Update
on:
2020-08-18 12:11:42 +02:00
push:
tags:
- '*.**'
jobs:
2020-08-18 12:11:42 +02:00
update-version:
name: Update VERSION
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
ref: master
fetch-depth: 0
2020-08-18 12:11:42 +02:00
- name: Edit version.py
run: echo "VERSION = \"$(git describe --tags `git rev-list --tags --max-count=1`)\"" > posthog/version.py
2020-08-18 12:11:42 +02:00
- 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>