diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b406c80..70e6761 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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 @@ -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 \ diff --git a/index.html b/index.html index 995e5e4..27cabd0 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,7 @@

Hello Hoseki! Meh

-

Welcome to your Electron application v1.4.1

+

Welcome to your Electron application v1.4.2

First paragraph

Second paragraph

Third paragraph

diff --git a/package.json b/package.json index aaf5334..ca84e84 100644 --- a/package.json +++ b/package.json @@ -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": {