Skip to content

Commit

Permalink
WiP Publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
corey committed Aug 23, 2024
1 parent 1c57388 commit f0592a9
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,13 +239,16 @@ jobs:
- name: Display OM Wheelhouse Directory
working-directory: python/origen_metal
run: ls wheelhouse
run: |
ls wheelhouse
echo $( ls wheelhouse | head -1 ) > ${{ env.om_wheel }}
- name: Upload Origen Metal Python Package Artifact
uses: actions/upload-artifact@v1
with:
name: om_wheels
path: python/origen_metal/wheelhouse/*
# path: python/origen_metal/wheelhouse/*
path: python/origen_metal/wheelhouse/${{ env.om_wheel }}

- name: Get OM Python Package Version
working-directory: python/origen_metal
Expand Down Expand Up @@ -273,13 +276,16 @@ jobs:
- name: Display Origen Wheelhouse Directory
working-directory: python/origen
run: ls wheelhouse
run: |
ls wheelhouse
echo $( ls wheelhouse | head -1 ) > ${{ env.origen_wheel }}
- name: Upload Origen Python Package Artifact
uses: actions/upload-artifact@v1
with:
name: origen_wheels
path: python/origen/wheelhouse/*
# path: python/origen/wheelhouse/*
path: python/origen/wheelhouse/${{ env.origen_wheel }}

- name: Get Origen Python Package Version
working-directory: python/origen
Expand Down

0 comments on commit f0592a9

Please sign in to comment.