Skip to content

Merge branch 'mirekys/qase-integration' into detached #553

Merge branch 'mirekys/qase-integration' into detached

Merge branch 'mirekys/qase-integration' into detached #553

Workflow file for this run

name: Build, test and publish
on: push
permissions:
id-token: write
contents: read
jobs:
build12:
uses: ./.github/workflows/build.yaml

Check failure on line 11 in .github/workflows/push.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/push.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/push.yaml" -> "./.github/workflows/build.yaml" (source branch with sha:b09e945308fde9379dfd92bc394aca88c6e68cea) : You have an error in your yaml syntax on line 52
secrets: inherit
with:
oarepo: "12"
publish:
runs-on: ubuntu-latest
needs: build12
steps:
- name: Use built artifacts
uses: actions/download-artifact@v3
with:
name: dist
path: dist
- name: List files
run: |
ls -la
ls -la dist
- name: Publish package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip_existing: true
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}