Skip to content

Commit 05417a2

Browse files
committed
feat(ci): use the relative path
1 parent 7d6fe5a commit 05417a2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/publish_images.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525

2626
jobs:
2727
build_operator:
28-
uses: radondb/radondb-mysql-kubernetes/.github/workflows/build_operator_image.yml@main
28+
uses: ./.github/workflows/build_operator_image.yml
2929
if: ${{ github.event.inputs.build_operator == 'true' }}
3030
with:
3131
image_tag: ${{ github.event.inputs.tag }}
@@ -34,7 +34,7 @@ jobs:
3434
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
3535

3636
build_sidecar:
37-
uses: radondb/radondb-mysql-kubernetes/.github/workflows/build_sidecar_image.yml@main
37+
uses: ./.github/workflows/build_sidecar_image.yml
3838
if: ${{ github.event.inputs.build_sidecar == 'true' }}
3939
with:
4040
image_tag: ${{ github.event.inputs.tag }}
@@ -43,7 +43,7 @@ jobs:
4343
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
4444

4545
build_xenon:
46-
uses: radondb/radondb-mysql-kubernetes/.github/workflows/build_xenon_image.yml@main
46+
uses: ./.github/workflows/build_xenon_image.yml
4747
if: ${{ github.event.inputs.build_xenon == 'true' }}
4848
with:
4949
image_tag: ${{ github.event.inputs.tag }}

.github/workflows/publish_release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ on:
1010

1111
jobs:
1212
update_release_draft:
13-
uses: radondb/radondb-mysql-kubernetes/.github/workflows/release_drafter.yml@main
13+
uses: ./.github/workflows/release_drafter.yml
1414
with:
1515
version: ${{ github.event.inputs.version }}
1616
secrets:
1717
git_token: ${{ secrets.GITHUB_TOKEN }}
1818

1919
build_operator:
20-
uses: radondb/radondb-mysql-kubernetes/.github/workflows/build_operator_image.yml@main
20+
uses: ./.github/workflows/build_operator_image.yml
2121
needs: update_release_draft
2222
with:
2323
image_tag: ${{ needs.update_release_draft.outputs.version }}
@@ -26,7 +26,7 @@ jobs:
2626
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
2727

2828
build_sidecar:
29-
uses: radondb/radondb-mysql-kubernetes/.github/workflows/build_sidecar_image.yml@main
29+
uses: ./.github/workflows/build_sidecar_image.yml
3030
needs: update_release_draft
3131
with:
3232
image_tag: ${{ needs.update_release_draft.outputs.version }}
@@ -35,7 +35,7 @@ jobs:
3535
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
3636

3737
publish_chart:
38-
uses: radondb/radondb-mysql-kubernetes/.github/workflows/publish_charts.yml@main
38+
uses: ./.github/workflows/publish_charts.yml
3939
if: ${{ github.event.inputs.version == '' }}
4040
needs: update_release_draft
4141
with:

0 commit comments

Comments
 (0)