Skip to content

Commit c03447f

Browse files
committed
Debugging
1 parent 58ff39a commit c03447f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_slc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Build SLC ${{ inputs.flavor }}
4848
id: build-slc
4949
run: |
50-
slc_path=`poetry run -- nox -s "ci:export-and-scan-vulnerabilities" --flavor "${{inputs.flavor}}" --branch-name ${GITHUB_REF##*/} --docker-user "$DOCKER_USERNAME" --docker-password "$DOCKER_PASSWORD" --commit-sha "${{ github.sha }}"`
50+
slc_path=`poetry run -- nox -s "ci:export-and-scan-vulnerabilities" --flavor "${{inputs.flavor}}" --branch-name ${{github.ref_name}} --docker-user "$DOCKER_USERNAME" --docker-password "$DOCKER_PASSWORD" --commit-sha "${{ github.sha }}"`
5151
echo "slc-path=$slc_path" >> $GITHUB_OUTPUT
5252
env:
5353
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}

.github/workflows/ci_check_for_build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
- name: Run check
2626
id: run-check
2727
run: |
28-
echo branch name is ${GITHUB_REF##*/}
29-
result = `poetry run -- nox -s run_check_if_build_needed -- --flavor ${{ inputs.flavor }} --branch-name ${GITHUB_REF##*/}`
28+
echo branch name is ${{github.ref_name}}
29+
result = `poetry run -- nox -s ci:check-if-build-need -- --flavor ${{ inputs.flavor }} --branch-name ${{github.ref_name}}`
3030
echo "continue=$result" >> $GITHUB_OUTPUT
3131
3232
outputs:

0 commit comments

Comments
 (0)