Skip to content

Commit

Permalink
removes sha from zip filename so we can upload it
Browse files Browse the repository at this point in the history
  • Loading branch information
sphawes committed May 30, 2022
1 parent 8d5fb2c commit 1e25848
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/export-mcad.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,28 +78,28 @@ jobs:
cd .github/workflows/scripts/stl-export
pwd
ls -al
zip -9 -j ~/LumenPnP-STLs-${SHORT_SHA}.zip *.stl
zip -9 -j ~/LumenPnP-STLs.zip *.stl
ls -al
cd /home/runner/work/index/index/.github/workflows/scripts/csm-export
pwd
ls -al
zip -9 -j -u ~/LumenPnP-DXFs-${SHORT_SHA}.zip *.dxf
zip -9 -j -u ~/LumenPnP-DXFs.zip *.dxf
ls -al
- name: Upload STLs as Artifacts
uses: actions/upload-artifact@v2
with:
name: LumenPnP-STLs.zip
path: ~/LumenPnP-STLs-${SHORT_SHA}.zip
path: ~/LumenPnP-STLs.zip
if-no-files-found: error
retention-days: 60

- name: Upload DXFs as Artifacts
uses: actions/upload-artifact@v2
with:
name: LumenPnP-DXFs.zip
path: ~/LumenPnP-DXFs-${SHORT_SHA}.zip
path: ~/LumenPnP-DXFs.zip
if-no-files-found: error
retention-days: 60

Expand Down

0 comments on commit 1e25848

Please sign in to comment.