Skip to content

Commit

Permalink
fix: upload release as zip
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Oct 29, 2021
1 parent 2a08466 commit 0b9d471
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/create-version.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Create version

on:
push:
branches:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/publish-dev-extension.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Beta Extensions
name: Publish Dev Extensions
on:
push:
tags:
Expand Down Expand Up @@ -67,10 +67,13 @@ jobs:

- run: ls -R

- name: Zip release build
run: zip -r hiro-wallet.v${{ needs.build-extension.outputs.new_version }}.zip hiro-wallet/

- name: Release
uses: softprops/action-gh-release@v1
with:
prerelease: true
tag_name: v${{ needs.build-extension.outputs.new_version }}
body_path: release-notes.txt
files: hiro-wallet/**
files: hiro-wallet.v${{ needs.build-extension.outputs.new_version }}.zip

0 comments on commit 0b9d471

Please sign in to comment.