Skip to content

Commit

Permalink
fixed mac release upload
Browse files Browse the repository at this point in the history
  • Loading branch information
HarryEMartland committed Aug 1, 2020
1 parent 86c5bc9 commit 41b7fb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: make test

- name: Build
run: go build -v -o terraform-provider-appd
run: make build

- uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Build (Mac)
env:
GOOS: darwin
run: go build -v -o terraform-provider-appd
run: make build

- uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -109,6 +109,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./terraform-provider-appd.linux.zip
asset_name: terraform-provider-appd.linux.zip
asset_path: ./terraform-provider-appd.mac.zip
asset_name: terraform-provider-appd.mac.zip
asset_content_type: application/zip

0 comments on commit 41b7fb9

Please sign in to comment.