Skip to content

Commit

Permalink
Change steps name and id-name
Browse files Browse the repository at this point in the history
Signed-off-by: vudiep411 <[email protected]>
  • Loading branch information
vudiep411 committed Dec 10, 2024
1 parent 1d97e1c commit cb55543
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get_version.outputs.VERSION }}
is_test: ${{ steps.check-env.outputs.IS_TEST }}
is_test: ${{ steps.check-if-testing.outputs.IS_TEST }}
steps:
- run: |
echo "Version: ${{ inputs.version || github.ref_name }}"
Expand Down Expand Up @@ -54,8 +54,8 @@ jobs:
# only ever be a tag
INPUT_VERSION: ${{ inputs.version || github.ref_name }}

- name: Set bucket name
id: check-env
- name: Check if we are testing
id: check-if-testing
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
echo "IS_TEST=true" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit cb55543

Please sign in to comment.