Skip to content

Commit

Permalink
Try env.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Tripp committed Sep 21, 2021
1 parent ba49dc0 commit 4f43a28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/install_artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ runs:
- name: Download distribution artifact
uses: actions/download-artifact@v2
with:
name: ${{ inputs.folder }}$HIML_DIST_ARTIFACT_SUFFIX
name: ${{ inputs.folder }}${{ env.HIML_DIST_ARTIFACT_SUFFIX }}
path: ${{ inputs.folder }}/dist

- name: Download package name artifact
uses: actions/download-artifact@v2
with:
name: ${{ inputs.folder }}$HIML_PACKAGE_NAME_ARTIFACT_SUFFIX
name: ${{ inputs.folder }}${{ env.HIML_PACKAGE_NAME_ARTIFACT_SUFFIX }}
path: ${{ inputs.folder }}

- name: Download version artifact
uses: actions/download-artifact@v2
with:
name: ${{ inputs.folder }}$HIML_VERSION_ARTIFACT_SUFFIX
name: ${{ inputs.folder }}${{ env.HIML_VERSION_ARTIFACT_SUFFIX }}
path: ${{ inputs.folder }}

- name: Set output
Expand Down

2 comments on commit 4f43a28

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Filename Stmts Miss Cover Missing
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/init.py 0 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/data/init.py 0 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/data/placeholder.py 2 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/losses/init.py 0 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/networks/init.py 0 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/networks/blocks/init.py 0 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/networks/layers/init.py 0 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/networks/nets/init.py 0 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/utils/init.py 0 0 100.00%
TOTAL 2 0 100.00%

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Filename Stmts Miss Cover Missing
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/init.py 0 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/azure/init.py 4 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/azure/azure_util.py 241 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/azure/datasets.py 80 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/azure/himl.py 192 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/azure/himl_download.py 15 0 100.00%
/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/health/azure/himl_tensorboard.py 7 0 100.00%
TOTAL 539 0 100.00%

Please sign in to comment.