Skip to content

Commit

Permalink
Create update_version.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Carter authored Feb 27, 2024
1 parent 6c173f4 commit c981049
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/update_version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Update Version Info

on:
push:
branches: [ "release" ]
tags: [ "*" ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v2.3.3
with:
cache: pip

- name: Update Version Files
run: |
python3 .github/workflows/scripts/update_version.py
- uses: EndBug/add-and-commit@v9

0 comments on commit c981049

Please sign in to comment.