Skip to content

Commit

Permalink
Updated actions and download link
Browse files Browse the repository at this point in the history
  • Loading branch information
ezfe committed Oct 30, 2020
1 parent cb700fa commit ae8bf8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- run: yarn build:prod
- name: Zip Project
run: |
zip -r artifact.zip dist index.html
zip -r minecraftjson-compiled.zip dist index.html
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -38,6 +38,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: ./artifact.zip
asset_name: artifact.zip
asset_path: ./minecraftjson-compiled.zip
asset_name: minecraftjson-compiled.zip
asset_content_type: application/zip
2 changes: 1 addition & 1 deletion src/components/Tellraw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const Tellraw: React.FunctionComponent<{}> = () => {
<a className="dropdown-item" href="https://status.minecraftjson.com">
<FontAwesomeIcon icon="wifi" /> Uptime
</a>
<a className="dropdown-item" href="https://github.com/ezfe/tellraw/archive/master.zip">
<a className="dropdown-item" href="https://github.com/ezfe/tellraw/releases/latest">
<FontAwesomeIcon icon="file-download" /> Download Website
</a>
<a className="dropdown-item" href="https://legacy.minecraftjson.com">
Expand Down

0 comments on commit ae8bf8f

Please sign in to comment.