Skip to content

Commit

Permalink
Fix step identifiers in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TranquilMarmot committed Feb 18, 2020
1 parent 395f3f9 commit fd79889
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 @@ -35,7 +35,7 @@ jobs:
prerelease: false

- name: Upload Windows Release Asset
id: upload-release-asset
id: upload-windows-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -47,7 +47,7 @@ jobs:
asset_name: FuzzyComic_Windows.exe
asset_content_type: application/vnd.microsoft.portable-executable
- name: Upload Linux Release Asset
id: upload-release-asset
id: upload-linux-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -57,7 +57,7 @@ jobs:
asset_name: FuzzyComic_Linux
asset_content_type: application/octet-stream
- name: Upload macOS Release Asset
id: upload-release-asset
id: upload-macos-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit fd79889

Please sign in to comment.