Skip to content

Commit

Permalink
Fix release asset names for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ljnicol committed Apr 8, 2020
1 parent ddc3fb2 commit d5eb80e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,19 +219,19 @@ jobs:
uses: actions/download-artifact@v1
with:
name: hastile-linux
path: build-linux-{{ github.ref }}.zip
path: build-linux.zip

- name: Download build artifacts
uses: actions/download-artifact@v1
with:
name: hastile-windows
path: build-windows-{{ github.ref }}.zip
path: build-windows.zip

- name: Download build artifacts
uses: actions/download-artifact@v1
with:
name: hastile-macos
path: build-macos-{{ github.ref }}.zip
path: build-macos.zip

- name: Generate Changelog
run: echo "# Good things have arrived" > ${{ github.workflow }}-CHANGELOG.txt
Expand All @@ -242,8 +242,8 @@ jobs:
with:
body_path: ${{ github.workflow }}-CHANGELOG.txt
files: |
build-linux-{{ github.ref }}.zip
build-windows-{{ github.ref }}.zip
build-macos-{{ github.ref }}.zip
build-linux.zip
build-windows.zip
build-macos.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d5eb80e

Please sign in to comment.