Skip to content

Continuous Integration and Deployment #2

Continuous Integration and Deployment

Continuous Integration and Deployment #2

Workflow file for this run

name: Continuous Integration and Deployment
on:
release:
types: [created]
workflow_dispatch:
jobs:
# Publishes to PyPi if tests are passed and release is created
publish:

Check failure on line 10 in .github/workflows/cicd.yml

View workflow run for this annotation

GitHub Actions / Continuous Integration and Deployment

Invalid workflow file

The workflow is not valid. .github/workflows/cicd.yml (Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
if: github.event_name == 'release' && github.event.action == 'created'
needs: test
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/nemosis/
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
# Checkout repo
- name: Checkout
uses: actions/checkout@v3
# Install rye with cache
- name: Install the latest version of rye
uses: eifinger/setup-rye@v4
with:
enable-cache: true
# Sync dependencies
- name: Sync dependencies
run: rye sync
# Build
- name: Build
run: rye build
# Publish to PyPI
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1