Skip to content

Use trusted publisher instead of secrets. #49

Use trusted publisher instead of secrets.

Use trusted publisher instead of secrets. #49

Workflow file for this run

name: release
on:
push:
branches: [ develop ]
tags: ['**']
pull_request:
branches: [ develop ]
jobs:
release:
if: github.repository == 'mcmtroffaes/sphinxcontrib-bibtex'
runs-on: ubuntu-latest
environment: release

Check failure on line 12 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 12
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U twine wheel build
- name: Build package
run: |
python -m build --sdist --wheel
twine check dist/*
- name: Publish to Test PyPI
if: ${{ !startsWith(github.ref, 'refs/tags') }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
skip-existing: true
- name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1