Skip to content

Commit 0290e6f

Browse files
nightly-dev build
1 parent 04d89ef commit 0290e6f

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release-2-tag-docker-push.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
type: string
1414
description: 'Release version (x.y.z format)'
1515
required: true
16+
default: '0.1.5'
1617

1718
jobs:
1819
tag:
@@ -31,7 +32,7 @@ jobs:
3132
- name: Create new tag ${{ github.event.inputs.release_number }}
3233
# at this point, the PR from the 1st workflow is merged into master.
3334
run: |
34-
git tag -a ${{ github.event.inputs.release_number }} -m "[bot] release ${{ github.event.inputs.release_number }}"
35+
git tag -f -a ${{ github.event.inputs.release_number }} -m "[bot] release ${{ github.event.inputs.release_number }}"
3536
git push origin ${{ github.event.inputs.release_number }}
3637
3738
publish-docker-containers:

.github/workflows/release-x-manual-merge-container-digests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
8989
# debian images are the default / official ones, so these get the latest tag
9090
- name: Tag Debian with latest tags
91-
if: ${{ matrix.os == 'debian' }} && ${{ github.event.inputs.is_latest }}
91+
if: ${{ (matrix.os == 'debian') && (github.event.inputs.is_latest) }}
9292
working-directory: ${{ runner.temp }}/digests
9393
run: |
9494
set -x

0 commit comments

Comments
 (0)