Skip to content

Update docker-image.yml #7

Update docker-image.yml

Update docker-image.yml #7

Workflow file for this run

---

Check failure on line 1 in .github/workflows/build-publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-publish.yml

Invalid workflow file

`pushx` is not a valid event name
name: Build and Publish Release via PyPi
on: pushx
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Update version file ⬆️
uses: brettdorrans/write-version-to-file@v1.1.0
with:
filename: '.VERSION'
placeholder: '${VERSION}'
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a source tarball
run: >-
python -m
build
--sdist
--outdir dist/ .
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}