Skip to content

Commit c112cb3

Browse files
nightly-dev build
1 parent ca65dde commit c112cb3

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/release-nightly-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ jobs:
1616
uses: ./.github/workflows/release-x-nightly.yml
1717
with:
1818
branch-to-build: 'dev'
19-
tag: 'nightly-dev'
19+
tag-to-apply: 'nightly-dev'
2020
secrets: inherit

.github/workflows/release-x-nightly.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
description: 'Branch to checkout, build and publish'
1414
required: false
1515
default: 'dev'
16-
tag:
16+
tag-to-apply:
1717
type: string
1818
description: 'Tag to apply to the images'
1919
required: false
@@ -33,10 +33,10 @@ jobs:
3333
git config --global user.name "${{ env.GIT_USERNAME }}"
3434
git config --global user.email "${{ env.GIT_EMAIL }}"
3535
36-
- name: Create new tag ${{ github.event.inputs.tag }}
36+
- name: Create new tag ${{ github.event.inputs.tag-to-apply }}
3737
run: |
38-
git tag -f -a ${{ github.event.inputs.tag }} -m "[bot] release ${{ github.event.inputs.tag }}"
39-
git push origin ${{ github.event.inputs.tag }} -f
38+
git tag -f -a ${{ github.event.inputs.tag-to-apply }} -m "[bot] release ${{ github.event.inputs.tag-to-apply }}"
39+
git push origin ${{ github.event.inputs.tag-to-apply }} -f
4040
4141
publish-docker-containers:
4242
needs: tag
@@ -46,21 +46,21 @@ jobs:
4646
fail-fast: false
4747
uses: ./.github/workflows/release-x-manual-docker-containers.yml
4848
with:
49-
release_number: ${{ github.event.inputs.tag }}
49+
release_number: ${{ github.event.inputs.tag-to-apply }}
5050
platform: ${{ matrix.platform }}
5151
secrets: inherit
5252

5353
publish-container-digests:
5454
needs: publish-docker-containers
5555
uses: ./.github/workflows/release-x-manual-merge-container-digests.yml
5656
with:
57-
release_number: ${{ github.event.inputs.tag }}
57+
release_number: ${{ github.event.inputs.tag-to-apply }}
5858
secrets: inherit
5959

6060
release-helm-chart:
6161
needs: publish-container-digests
6262
uses: ./.github/workflows/release-x-manual-helm-chart.yml
6363
with:
64-
release_number: ${{ github.event.inputs.tag }}
64+
release_number: ${{ github.event.inputs.tag-to-apply }}
6565
secrets: inherit
6666

0 commit comments

Comments
 (0)