ci: remove duplicate helper script
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
2e2ab55f9e
commit
9770ba07c2
|
@ -11,38 +11,7 @@ runs:
|
||||||
steps:
|
steps:
|
||||||
- name: Generate config
|
- name: Generate config
|
||||||
id: ev
|
id: ev
|
||||||
shell: python
|
uses: ./.github/actions/docker-push-variables
|
||||||
run: |
|
|
||||||
"""Helper script to get the actual branch name, docker safe"""
|
|
||||||
import os
|
|
||||||
from time import time
|
|
||||||
|
|
||||||
env_pr_branch = "GITHUB_HEAD_REF"
|
|
||||||
default_branch = "GITHUB_REF"
|
|
||||||
sha = "GITHUB_SHA"
|
|
||||||
|
|
||||||
branch_name = os.environ[default_branch]
|
|
||||||
if os.environ.get(env_pr_branch, "") != "":
|
|
||||||
branch_name = os.environ[env_pr_branch]
|
|
||||||
|
|
||||||
should_build = str(os.environ.get("DOCKER_USERNAME", "") != "").lower()
|
|
||||||
|
|
||||||
print("##[set-output name=branchName]%s" % branch_name)
|
|
||||||
print(
|
|
||||||
"##[set-output name=branchNameContainer]%s"
|
|
||||||
% branch_name.replace("refs/heads/", "").replace("/", "-")
|
|
||||||
)
|
|
||||||
print("##[set-output name=timestamp]%s" % int(time()))
|
|
||||||
print("##[set-output name=sha]%s" % os.environ[sha])
|
|
||||||
print("##[set-output name=shouldBuild]%s" % should_build)
|
|
||||||
|
|
||||||
import configparser
|
|
||||||
parser = configparser.ConfigParser()
|
|
||||||
parser.read(".bumpversion.cfg")
|
|
||||||
version = parser.get("bumpversion", "current_version")
|
|
||||||
version_family = ".".join(version.split(".")[:-1])
|
|
||||||
print("##[set-output name=version]%s" % version)
|
|
||||||
print("##[set-output name=versionFamily]%s" % version_family)
|
|
||||||
- name: Find Comment
|
- name: Find Comment
|
||||||
uses: peter-evans/find-comment@v2
|
uses: peter-evans/find-comment@v2
|
||||||
id: fc
|
id: fc
|
||||||
|
|
Reference in New Issue