Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
refactor naming
Browse files Browse the repository at this point in the history
  • Loading branch information
reakaleek committed Oct 15, 2024
1 parent ac794bb commit 0e4ee65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with open(".ci/.docker-images.yml", "r") as stream:
images.extend(yaml.safe_load(stream)['images'])
for image in images:
image['repository_name'] = image['repository'].split('/')[-1]
image['repository_name_without_owner'] = image['repository'].split('/')[-1]
images_json = json.dumps(images)
with open(os.environ['GITHUB_OUTPUT'], 'a') as f:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
"contents": "read"
}
repositories: >-
["${{ matrix.repository_name }}"]
["${{ matrix.repository_name_without_owner }}"]
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 0e4ee65

Please sign in to comment.