Skip to content

Commit

Permalink
Update current feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Feb 1, 2024
1 parent ee97822 commit a351532
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-gha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: ciux ignite $PWD
- name: Build fink-broker image for k8s
run: |
./build.sh --suffix "${{ env.SUFFIX }}" --tmp-registry "${{ env.CI_REPO }}"
./build.sh -s "${{ env.SUFFIX }}" -r "${{ env.CI_REPO }}"
- name: Export fink-broker image
run: |
$(ciux get image --check $PWD --suffix "${{ env.SUFFIX }}" --env)
Expand Down
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ suffix=""
tmp_registry=""

# get the options
while getopts hs: c ; do
while getopts hr:s: c ; do
case $c in
h) usage ; exit 0 ;;
r) tmp_registry=$OPTARG ;;
s) suffix=$OPTARG ;;
\?) usage ; exit 2 ;;
esac
Expand Down

0 comments on commit a351532

Please sign in to comment.