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 5c77287 commit a1acd4eCopy full SHA for a1acd4e
.github/workflows/ci.yml
@@ -18,3 +18,15 @@ jobs:
18
docker run \
19
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
20
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
21
+
22
+ publish:
23
+ name: Publish
24
+ needs: build
25
+ if: "success() && startsWith(github.ref, 'refs/tags/')"
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - name: Publish package to PyPI
29
+ uses: pypa/gh-action-pypi-publish@master
30
+ with:
31
+ user: __token__
32
+ password: ${{ secrets.pypi_password }}
0 commit comments