Skip to content

build: WIP GitHub workflows #3

build: WIP GitHub workflows

build: WIP GitHub workflows #3

name: Build and publish to Test PyPI
on:
push:
branches-ignore:
- main
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
build:
uses: ./github/workflows/build.yml

Check failure on line 15 in .github/workflows/publish-development.yml

View workflow run for this annotation

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

Invalid workflow file

invalid value workflow reference: no version specified
publish-to-test-pypi:
runs-on: ubuntu-latest
# Specifying a GitHub environment is optional, but strongly encouraged
environment: development
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
sign-artifacts: true
skip-existing: true