Skip to content

Fix typo

Fix typo #11

Workflow file for this run

name: Release asyncord
on:
push:
tags:
- v*
workflow_dispatch:
jobs:
run-tests:
uses: vadim-su/asyncord/.github/workflows/tests.yml@main

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

View workflow run for this annotation

GitHub Actions / Release asyncord

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 12, Col: 11): Secret ASYNCORD_TEST_TOKEN is required, but not provided while calling.
publish:
runs-on: ubuntu-latest
needs: run-tests
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Build package distributions
run: uv build
- name: Publish package distributions to PyPI
run: uv publish