Skip to content

Commit

Permalink
Add support of tag-publish
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Nov 17, 2024
1 parent 94f0dde commit a2b060e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
- '*'
pull_request:

permissions:
contents: read

env:
HAS_SECRETS: ${{ secrets.HAS_SECRETS }}
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring
Expand Down
10 changes: 8 additions & 2 deletions github_app_geo_project/module/versions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import github
import requests
import security_md
import yaml
from pydantic import BaseModel

from github_app_geo_project import module, utils
Expand Down Expand Up @@ -459,8 +460,13 @@ def _get_names(
if match and match.group(1) not in names:
names.append(match.group(1))
os.environ["GITHUB_REPOSITORY"] = f"{context.github_project.owner}/{context.github_project.repository}"
data = c2cciutils.get_config()
docker_config = data.get("publish", {}).get("docker", {})
docker_config = {}
if os.path.exists(".github/publish.yaml"):
with open(".github/publish.yaml", encoding="utf-8") as file:
docker_config = yaml.load(file, Loader=yaml.SafeLoader).get("docker", {})
else:
data = c2cciutils.get_config()
docker_config = data.get("publish", {}).get("docker", {})
if docker_config:
names = names_by_datasource.setdefault("docker", _TransversalStatusNameByDatasource()).names
all_versions = [version]
Expand Down

0 comments on commit a2b060e

Please sign in to comment.