We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 902eb16 commit 3280df9Copy full SHA for 3280df9
.github/workflows/pypi.yml
@@ -5,6 +5,7 @@ on: push
5
jobs:
6
build:
7
name: Build distribution 📦
8
+ if: startsWith(github.ref, 'refs/tags/')
9
runs-on: ubuntu-latest
10
strategy:
11
matrix:
@@ -45,8 +46,6 @@ jobs:
45
46
environment:
47
name: pypi
48
url: https://pypi.org/p/viz-python-lib
- permissions:
49
- id-token: write
50
51
steps:
52
- name: Download all the dists
@@ -57,3 +56,6 @@ jobs:
57
56
58
- name: Publish distribution 📦 to PyPI
59
uses: pypa/gh-action-pypi-publish@release/v1
+ with:
60
+ username: __token__
61
+ password: ${{ secrets.PYPI_TOKEN }}
.github/workflows/tests.yml
@@ -4,6 +4,7 @@ on: [push, pull_request]
4
+ if: ${{ !startsWith(github.ref, 'refs/tags/') }}
0 commit comments