diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5dd405f..e97a0af 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -33,7 +33,7 @@ jobs: id: find_latest_asset run: | latest_file=$(ls -t ../../out/make/* | head -n1) - echo "::set-output name=files::$latest_file" + echo "::set-output name=asset_path::$latest_file" - name: Create Release id: create_release @@ -53,6 +53,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ${{ steps.find_latest_asset.outputs.files }} + asset_path: ${{ steps.find_latest_asset.outputs.asset_path }} asset_name: hoseki-admin.zip asset_content_type: application/zip diff --git a/index.html b/index.html index 260b360..0c51ff0 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,7 @@

Hello Hoseki! Meh

-

Welcome to your Electron application v1.1.9

+

Welcome to your Electron application v1.2.0

First paragraph

Second paragraph

Third paragraph

diff --git a/package.json b/package.json index 4b30eb9..e39d0ca 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hoseki-admin", "productName": "hoseki-admin", - "version": "1.1.9", + "version": "1.2.0", "description": "Hoseki admin app test", "main": ".vite/build/main.js", "scripts": {