Skip to content

Commit 5a26203

Browse files
authored
Merge pull request #2 from avlllo/main
ci/cd: replace artifacts path with org name
2 parents 92d490a + 51e700f commit 5a26203

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

.github/workflows/docker-build-push.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
env:
1010
TASK_VERSION: '3.38.0'
1111
REGISTRY: ghcr.io
12+
REPO: runtime-radar
1213
GO_VERSION: '1.24'
1314

1415
jobs:
@@ -23,12 +24,6 @@ jobs:
2324
- name: Checkout code
2425
uses: actions/checkout@v5
2526

26-
# This step is necessary because the organization name contains uppercase letters.
27-
# Github Actions itself doesn't have any functions that help to transform strings.
28-
- name: Make repo lowercase
29-
run: |
30-
echo "REPO=${GITHUB_REPOSITORY,,}" >> ${GITHUB_ENV}
31-
3227
- name: Install Task
3328
uses: go-task/setup-task@v1
3429
with:

.github/workflows/helm-build-push.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88

99
env:
1010
REGISTRY: ghcr.io
11+
REPO: runtime-radar
1112
CHART_PATH: install/helm
1213
CHART_NAME: runtime-radar
1314
HELM_VERSION: '3.19.0'
@@ -30,12 +31,6 @@ jobs:
3031
with:
3132
version: ${{ env.HELM_VERSION }}
3233

33-
# This step is necessary because the organization name contains uppercase letters.
34-
# Github Actions itself doesn't have any functions that help to transform strings.
35-
- name: Make repo lowercase
36-
run: |
37-
echo "REPO=${GITHUB_REPOSITORY,,}" >> ${GITHUB_ENV}
38-
3934
- name: Log in to GitHub Container Registry
4035
uses: docker/login-action@v3
4136
with:

0 commit comments

Comments
 (0)