Skip to content

Commit

Permalink
* chore(actions): created action for automatic versioning and releases (
Browse files Browse the repository at this point in the history
#64)

* chore(actions): created action for automatic versioning and release

* Update node.js.yml

* chore(github-action): changed run command to the deployBuild script

* fix(github-action): added npm install step

* chore(github-action): try to fix file not found error

* chore(github-action): try to fix file not found error

* chore(deploy-script): replaced fixed strings with path variables

* chore(deploy-script): fixed lower case letters, for unix environments

* chore(github-action): added user.name and email to workflow

* chore(github-action): removed pull-requests as they not build releases

* chore(github-action): fixed a better version tagging

* chore(github-action): get auto pre-release working

* chore(github-action): get auto pre-release working
  • Loading branch information
tabris87 authored Feb 29, 2024
1 parent 9eabf3f commit cfced7b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: $version
release_name: Pre-Release $version
tag_name: ${{version}}
release_name: Pre-Release ${{version}}
body: |
Automatic generated pre-release with the latest features and bugfixes
draft: false
prerelease: true
path: deployments/journey_recorder_nightly_${{version}}.zip

0 comments on commit cfced7b

Please sign in to comment.