Skip to content

Commit

Permalink
Version step
Browse files Browse the repository at this point in the history
  • Loading branch information
Webreaper committed Jan 26, 2021
1 parent 69caddc commit e3af91e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/damselfly-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v2

- name: Read VERSION file
id: getversion
run: echo "::set-output name=version::$(cat VERSION)"

- name: Download Server Build
uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -128,12 +132,12 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
release_name: Release v${{ steps.getversion.outputs.version }}
body: |
Changes in this Release
- First Change
- Second Change
draft: true
draft: false
prerelease: true

- name: Upload assets to Release (master only)
Expand Down

0 comments on commit e3af91e

Please sign in to comment.