Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
NiniOak committed Sep 20, 2023
1 parent b196cf8 commit 7f6c426
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/go-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
fetch-depth: 0
- name: Get changed files
id: read-files
run: echo "skip-ci=$(./.github/scripts/filter_changed_files_go_test.sh)" >> "${GITHUB_ENV}"
run: |
./.github/scripts/filter_changed_files_go_test.sh
echo "skip-ci=${SKIP_CI}" >> "${GITHUB_ENV}"
setup:
needs: [conditional-skip]
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-integrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
fetch-depth: 0
- name: Get changed files
id: read-files
run: echo "skip-ci=$(./.github/scripts/filter_changed_files_go_test.sh)" >> "${GITHUB_ENV}"
run: |
./.github/scripts/filter_changed_files_go_test.sh
echo "skip-ci=${SKIP_CI}" >> "${GITHUB_ENV}"
setup:
needs: [conditional-skip]
Expand Down

0 comments on commit 7f6c426

Please sign in to comment.