Skip to content

Commit

Permalink
- bump version
Browse files Browse the repository at this point in the history
- fix release action
  • Loading branch information
sschiessl-bcp committed Sep 28, 2022
1 parent 9397463 commit e54fd5a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Build/release

permissions:
contents: write

on:
push:
tags:
Expand All @@ -13,10 +16,12 @@ jobs:
- name: Create Release
id: create_release
uses: BTS-CM/action-gh-release@cd28b0f5ee8571b76cfdaa62a30d51d752317477
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
name: ${{ github.ref_name }}
draft: false
prerelease: false
draft: true
prerelease: endsWith(github.ref_name, 'rc1') || endsWith(github.ref_name, 'rc2') || endsWith(github.ref_name, 'rc3')
generate_release_notes: false

build:
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "beet",
"productName": "Beet Blockchain Companion",
"version": "0.3.0-rc1",
"version": "0.15.0-rc1",
"apiversion": 3,
"description": "Beet is a stand-alone key-manager and signing app for blockchains like BitShares, Bitcoin and others.",
"author": "clockworkgr <[email protected]>",
Expand Down

0 comments on commit e54fd5a

Please sign in to comment.