Skip to content

Test release workflow passing tag to docker workflow sixth trial agai… #34

Test release workflow passing tag to docker workflow sixth trial agai…

Test release workflow passing tag to docker workflow sixth trial agai… #34

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
uses: ./.github/workflows/docker-publish.yml@main

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

invalid value workflow reference: cannot specify version when calling local workflows
with:
tag: ${{ github.ref_name }}