improved GH actions

pull/508/head
hunterlong 2020-04-17 01:31:34 -07:00
parent 138209b01a
commit 42e62a145a
1 changed files with 11 additions and 11 deletions

View File

@ -191,17 +191,17 @@ jobs:
path: /home/runner/work/statping/statping/build/*
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: $(cat version.txt)
with:
tag_name: v$(cat version.txt)
release_name: Release v$(cat version.txt)
body: Statping v$(cat version.txt)
draft: false
prerelease: false
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: $(cat version.txt)
with:
tag_name: v$(cat version.txt)
release_name: Release v$(cat version.txt)
body: Statping v$(cat version.txt)
draft: false
prerelease: false
post-release:
runs-on: ubuntu-latest