Skip to content

fix schema

fix schema #2

Workflow file for this run

name: release
on:
push:
tags: [v*]
permissions:
contents: read
jobs:
github-release:

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

View workflow run for this annotation

GitHub Actions / release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yaml (Line: 12, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
timeout-minutes: 5
environment:
name: publish
url: https://github.com/NewFuture/NKThesis/releases/tag/${{ github.ref_name }}
permissions:
contents: write
needs: [publish-docker, publish-pypi, build-binary]
steps:
- uses: actions/checkout@v4
# install dependencies
- name: install
run: ./init.sh
- name: build
run: ./build.cmd
- name: upload to release
run: 'gh release upload ${{github.event.release.tag_name}} main.pdf#NKThesis.pdf'