Skip to content

Commit

Permalink
Update ce.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wugeshui authored Oct 18, 2023
1 parent c45dee7 commit 6766947
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ on:
# schedule:
# - cron: '30 11 * * 6'

env:
artifacts_path: /data/platform_ci/nginxweb/parrots/train/artifacts

concurrency:
group: ${{ github.head_ref || github.ref }}
Expand All @@ -22,7 +20,7 @@ jobs:
steps:
- name: start to check
run: |
cd ${artifacts_path}
cd /artifacts
if [ ! -f train_flag ]; then
echo "Results have been collected"
exit 1
Expand All @@ -31,10 +29,10 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: train-results
path: ${artifacts_path}/*.*
path: /artifacts/*.*
- name: start to clean
run: |
cd ${artifacts_path} && rm -rf train_flag
cd /artifacts && rm -rf train_flag

0 comments on commit 6766947

Please sign in to comment.