Skip to content

Test release workflow passing tag to docker workflow sixth trial, I'm… #33

Test release workflow passing tag to docker workflow sixth trial, I'm…

Test release workflow passing tag to docker workflow sixth trial, I'm… #33

Workflow file for this run

name: Release Package to PyPI.org
on:
release:
types: [published]
jobs:
build-and-publish:
name: Build and Publish Package to PyPI.org
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.12
- run: python -m pip install build twine && python -m build
- uses: pypa/gh-action-pypi-publish@release/v1
call-docker-workflow:
- needs: build-and-publish

Check failure on line 21 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 21
- uses: ./.github/workflows/docker-publish.yml@main
with:
tag: ${{ github.ref_name }}