Skip to content

Commit a5508d7

Browse files
authored
fix: Make script accept empty variable (#372)
* make e2e reuse build image workflow * remove nounset * fix script path
1 parent 17945e3 commit a5508d7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/scripts/release/create_changelog.sh

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env bash
22

33

4-
set -o nounset
54
set -o errexit
65
set -E
76
set -o pipefail

.github/workflows/create-release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ jobs:
7878
env:
7979
ITERATIONS: 40
8080
SLEEP_SECONDS: 30
81-
run: ./scripts/release/wait_for_image.sh ${{ env.IMAGE_REPO }}:${{ github.event.inputs.name }} $ITERATIONS $SLEEP_SECONDS
81+
run: ./.github/scripts/release/wait_for_image.sh ${{ env.IMAGE_REPO }}:${{ github.event.inputs.name }} $ITERATIONS $SLEEP_SECONDS
8282
- name: Publish release
8383
env:
8484
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
85-
run: ./scripts/release/publish_release.sh ${{ needs.draft-release.outputs.release_id }}
85+
run: ./.github/scripts/release/publish_release.sh ${{ needs.draft-release.outputs.release_id }}

0 commit comments

Comments
 (0)