mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-03 12:05:39 +00:00
14 lines
426 B
Bash
14 lines
426 B
Bash
#!/bin/bash
|
|
|
|
export VERSION_TAG="$(python -c '''
|
|
import datetime as dt
|
|
import json
|
|
import os
|
|
with open(os.environ["GITHUB_EVENT_PATH"], "r") as f:
|
|
event = json.load(f)
|
|
version = int(event["pull_request"]["title"].removeprefix("V").removesuffix(" Release").removesuffix(" Hotfix"))
|
|
date = dt.datetime.now().strftime("%d%m%Y")
|
|
print(f"XFW-{version:04}_{date}", end="")
|
|
''')"
|
|
echo "VERSION_TAG=${VERSION_TAG}" >> $GITHUB_ENV
|