Skip to content

add more tests; fix bugs #7

add more tests; fix bugs

add more tests; fix bugs #7

Workflow file for this run

name: Create Release
on:
workflow_dispatch:
push:
tags:
- '*'
jobs:
docker:

Check failure on line 10 in .github/workflows/tag.yaml

View workflow run for this annotation

GitHub Actions / Create Release

Invalid workflow file

The workflow is not valid. .github/workflows/tag.yaml (Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
needs: test
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Extract Tag Name
id: tag_name
run: echo "::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/})"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag_name.outputs.tag }}
release_name: Release ${{ steps.tag_name.outputs.tag }}
draft: false
prerelease: false