Skip to content

Removed README warning #119

Removed README warning

Removed README warning #119

Workflow file for this run

name: Create Tag
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Read version
id: version
uses: juliangruber/read-file-action@v1
with:
path: ./VERSION
trim: true
- name: Create Release
uses: ncipollo/release-action@v1
with:
tag: v${{steps.version.outputs.content}}
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
skipIfReleaseExists: true