Skip to content

Fix for header repetition. (#343) #30

Fix for header repetition. (#343)

Fix for header repetition. (#343) #30

Workflow file for this run

name: release
on:
push:
branches:
- develop
tags:
- '**'
jobs:
release:
if: github.repository == 'mcmtroffaes/sphinxcontrib-bibtex'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U setuptools twine wheel build
- name: Build package
run: |
python -m build --sdist --wheel
twine check dist/*

Check failure on line 25 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
- name: Publish to Test PyPI
if: !startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
- name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}