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

Internal 18 fix release workflow #95

Merged
merged 3 commits into from
May 26, 2020
Merged
Changes from all 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 @@ -265,15 +265,15 @@ jobs:
docker rm -f grapl-analyzerlib

- name: Upload grapl_analyzerlib 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 grapl_analzyerlib to PyPI
if: $CHANNEL == 'latest'
if: env.CHANNEL == 'latest'
uses: pypa/gh-action-pypi-publish@v1
with:
user: __token__
Expand Down