Skip to content

chore: add gitignore #1

chore: add gitignore

chore: add gitignore #1

Workflow file for this run

name: main
on:
push:
branches: [main]
tags:
- '*'
pull_request:
jobs:
# main:
# strategy:
# matrix:
# os: [ubuntu-latest]
# python-version: ["3.9", "3.10", "3.11", "3.12"]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version}}
# - name: install tox
# run: python -m pip install --upgrade tox virtualenv pip
# - name: run tox
# run: tox -e py
#
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: install dependencies
run: python -m pip install --upgrade build wheel
- name: build sdist
run: python -m build
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist
release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [sdist, main]

Check failure on line 46 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / main

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 46, Col: 20): Job 'release' depends on unknown job 'main'.
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
name: wheels
path: ./dist
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1