Skip to content

Commit

Permalink
homebrew action needs unique/versioned tarball names
Browse files Browse the repository at this point in the history
  • Loading branch information
NReilingh committed Dec 28, 2019
1 parent 2ec91d2 commit 958e962
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v1
- name: Package
run: tar -cvzf archive-fusionvm.tar.gz archive_vms.zsh
run: tar -cvzf archive-fusionvm-${{ steps.get_version.outputs.VERSION }}.tar.gz archive_vms.zsh
- name: GitHub Release
uses: softprops/action-gh-release@v1
with:
# Comma-delimited list of path globs for asset files to upload
files: archive-fusionvm.tar.gz
files: archive-fusionvm-${{ steps.get_version.outputs.VERSION }}.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Bump Homebrew formula
Expand All @@ -30,6 +30,6 @@ jobs:
with:
formula-name: archive-fusionvm
homebrew-tap: nreilingh/homebrew-nreilingh
download-url: https://github.com/NReilingh/archive-fusionvm/releases/download/${{ steps.get_version.outputs.VERSION }}/archive-fusionvm.tar.gz
download-url: https://github.com/NReilingh/archive-fusionvm/releases/download/${{ steps.get_version.outputs.VERSION }}/archive-fusionvm-${{ steps.get_version.outputs.VERSION }}.tar.gz
env:
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}

0 comments on commit 958e962

Please sign in to comment.