Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tisutisu committed Oct 30, 2024
1 parent c57e0b5 commit 5ff1e15
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run-task-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ jobs:
tool-cache: false
docker-images: false

- name: Get all changed task files
id: changed-tasks-files
- name: Get all changed files related to task and test
id: changed-files
uses: tj-actions/changed-files@v45
with:
# Avoid using single or double quotes for multiline patterns
files: |
task/**
test/**
- name: List all changed tasks
if: steps.changed-tasks-files.outputs.any_changed == 'true'
- name: List all changed task and test files
if: steps.changed-files.outputs.any_changed == 'true'
env:
ALL_CHANGED_FILES: ${{ steps.changed-tasks-files.outputs.all_changed_files }}
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
Expand Down Expand Up @@ -80,4 +80,4 @@ jobs:
- name: Run git-clone task test
run: |
cd $GITHUB_WORKSPACE/build-definitions
./hack/run-test.sh task git-clone 0.1
./test/run-test.sh task git-clone 0.1

0 comments on commit 5ff1e15

Please sign in to comment.