diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index d2073bb..11a2dd9 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -55,6 +55,15 @@ jobs: with: path: artifacts + - name: Artifacts normalization + shell: bash + run: | + cd artifacts + for i in foss* + do + mv -v $i $(echo $i|cut -d_ -f 2) + done + - name: Upload artifacts to Spaces uses: jakejarvis/s3-sync-action@master with: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 10281c3..56dcfc4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -37,6 +37,15 @@ jobs: with: path: artifacts + - name: Artifacts normalization + shell: bash + run: | + cd artifacts + for i in foss* + do + mv -v $i $(echo $i|cut -d_ -f 2) + done + - name: Upload artifacts to Spaces uses: jakejarvis/s3-sync-action@master with: