Skip to content

Commit

Permalink
1.4.2 test
Browse files Browse the repository at this point in the history
  • Loading branch information
TheStanish committed Jun 8, 2023
1 parent 7c0b47a commit 4994e07
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Find latest asset
id: find_latest_asset
run: |
asset_path=$(ls -t "${{ github.workspace }}/out/make/*.zip" | head -n1)
asset_path=$(ls -t ./out/make/*.zip | head -n1)
echo "::set-output name=asset_path::$asset_path"
- name: Create Release
Expand All @@ -58,11 +58,10 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ steps.find_latest_asset.outputs.asset_path }}
asset_path: ${{ github.workspace }}/${{ steps.find_latest_asset.outputs.asset_path }}
asset_name: hoseki-admin.zip
asset_content_type: application/zip


- name: Publish Release
run: |
curl \
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<div class="no-drag">
<h1 class="main-msg">Hello Hoseki! Meh</h1>
<p>Welcome to your Electron application v1.4.1</p>
<p>Welcome to your Electron application v1.4.2</p>
<p id="p1">First paragraph</p>
<p id="p2">Second paragraph</p>
<p id="p3">Third paragraph</p>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hoseki-admin",
"productName": "hoseki-admin",
"version": "1.4.1",
"version": "1.4.2",
"description": "Hoseki admin app test",
"main": ".vite/build/main.js",
"scripts": {
Expand Down

0 comments on commit 4994e07

Please sign in to comment.