Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Fix release workflow #92

Merged
merged 8 commits into from
May 26, 2020
Merged
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/grapl-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,15 @@ jobs:
docker rm -f graph-descriptions

- name: Upload graph-descriptions to Test PyPI
if: $CHANNEL == "beta"
if: "${{ env.CHANNEL }}" == "beta"
uses: pypa/gh-action-pypi-publish@v1
with:
user: __token__
password: ${{ secrets.GRAPL_ANALYZERLIB_TEST_PYPI_TOKEN }}
repository_url: https://test.pypi.org/legacy/

- name: Upload graph-descriptions to PyPI
if: $CHANNEL == "latest"
if: "${{ env.CHANNEL}}" == "latest"
uses: pypa/gh-action-pypi-publish@v1
with:
user: __token__
Expand Down