Skip to content

Commit

Permalink
More better syntax for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bruceadams committed Feb 20, 2020
1 parent d427ed1 commit e88f619
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 @@ -23,7 +23,7 @@ jobs:
- name: Upload Release Asset
uses: actions/upload-release-asset@v1.0.1
with:
upload_url: ${{ get_release.outputs.upload_url }}
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: ./target/release/yj
asset_name: yj.macos
asset_content_type: application/octet-stream
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Upload Release Asset
uses: actions/upload-release-asset@v1.0.1
with:
upload_url: ${{ get_release.outputs.upload_url }}
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: ./target/release/yj
asset_name: yj.linux
asset_content_type: application/octet-stream
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Upload Release Asset
uses: actions/upload-release-asset@v1.0.1
with:
upload_url: ${{ get_release.outputs.upload_url }}
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: ./target/release/yj.exe
asset_name: yj.exe
asset_content_type: application/octet-stream

0 comments on commit e88f619

Please sign in to comment.