Skip to content

Working on github action #9

Working on github action

Working on github action #9

Workflow file for this run

# Build, run tests and create a new release
name: release
# Controls when the action will run. Triggers the workflow on push with a release tag
on:
push:
tags:
#- "v[0-9]+.[0-9]+.[0-9]+"
- "test[0-9]+.[0-9]+.[0-9]+"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# Reuse the workflow to build and test the library
#build-and-test:
# uses: ./.github/workflows/build-and-test.yml
# Create a new release
create-release:
uses: docker://antonyurchenko/git-release:v6

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

invalid value workflow reference: no version specified
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DRAFT_RELEASE: "true"
PRE_RELEASE: "false"
CHANGELOG_FILE: "CHANGELOG.md"
ALLOW_EMPTY_CHANGELOG: "false"
ALLOW_TAG_PREFIX: "true"