Skip to content

Commit

Permalink
Merge pull request #6 from koplo199/patch-1
Browse files Browse the repository at this point in the history
Update asset naming scheme for automation
  • Loading branch information
mirkobrombin authored Aug 16, 2023
2 parents 483a4e2 + 09ce673 commit 07b7c22
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,20 @@ jobs:
run: |
version=$(cat VERSION)
echo "::set-output name=release_version::${version}"
- name: Rename runtime archive
working-directory: /home/runner
run: |
mv "runtime.tar.gz" "runtime-${{ steps.vars.outputs.release_version }}.tar.gz"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
draft: false
prerelease: false
automatic_release_tag: "${{ steps.vars.outputs.release_version }}"
title: "${{ steps.vars.outputs.release_version }}"
files: "/home/runner/runtime.tar.gz"
files: "/home/runner/runtime-${{ steps.vars.outputs.release_version }}.tar.gz"

- name: Upload log.txt
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.2
0.6.3

0 comments on commit 07b7c22

Please sign in to comment.