diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a843719..83835ec 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,10 +17,12 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v2 with: - node-version: '14' + node-version: '18' - name: Install dependencies - run: npm ci + env: + NODE_ENV: development + run: npm install - name: Get current version id: get_version @@ -35,8 +37,7 @@ jobs: - name: Find latest asset id: find_latest_asset run: | - latest_file=$(ls -t out/make/* | head -n1) - asset_path=$(realpath --relative-to=./ "$latest_file") + asset_path=$(pwd)/out/make echo "::set-output name=asset_path::$asset_path" - name: Create Release diff --git a/index.html b/index.html index 32f0a2f..3ee82a7 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,7 @@

Hello Hoseki! Meh

-

Welcome to your Electron application v1.2.8

+

Welcome to your Electron application v1.2.9

First paragraph

Second paragraph

Third paragraph

diff --git a/package.json b/package.json index 9c2084a..f5d1760 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hoseki-admin", "productName": "hoseki-admin", - "version": "1.2.8", + "version": "1.2.9", "description": "Hoseki admin app test", "main": ".vite/build/main.js", "scripts": {