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

Fix pypa/gh-action-pypi-publish version #96

Merged
merged 5 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
8 changes: 4 additions & 4 deletions .github/workflows/grapl-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,15 +241,15 @@ jobs:

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

- name: Upload graph-descriptions to PyPI
if: env.CHANNEL == 'latest'
uses: pypa/gh-action-pypi-publish@v1
uses: pypa/gh-action-pypi-publish@v1.1.0
with:
user: __token__
password: ${{ secrets.GRAPL_ANALYZERLIB_PYPI_TOKEN }}
Expand All @@ -266,15 +266,15 @@ jobs:

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

- name: Upload grapl_analzyerlib to PyPI
if: env.CHANNEL == 'latest'
uses: pypa/gh-action-pypi-publish@v1
uses: pypa/gh-action-pypi-publish@v1.1.0
with:
user: __token__
password: ${{ secrets.GRAPL_ANALYZERLIB_PYPI_TOKEN }}
Expand Down