Skip to content

Commit

Permalink
update action checkout test
Browse files Browse the repository at this point in the history
Signed-off-by: Woojoong Kim <woojoong.kim@intel.com>
  • Loading branch information
woojoong88 committed Jun 27, 2024
1 parent 920aced commit 087ae70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ jobs:
- name: check dev version
id: dev-version-check-step
shell: bash
run: |
bash ./build/bin/version_check.sh is_dev
set -x
./build/bin/version_check.sh is_dev
if [[ $? == 0 ]]; then echo "dev_version=true" >> $GITHUB_OUTPUT; else echo "dev_version=false" >> $GITHUB_OUTPUT; fi
- name: get target version
Expand Down
1 change: 1 addition & 0 deletions 1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dev_version=false

0 comments on commit 087ae70

Please sign in to comment.