diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 75d0efc..a843719 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v2 with: - node-version: '18' + node-version: '14' - name: Install dependencies run: npm ci @@ -27,12 +27,15 @@ jobs: run: echo "::set-output name=version::$(node -p "require('./package.json').version")" - name: Build project - run: npm run build + run: npm run make + + - name: Create out/make directory + run: mkdir -p out/make - name: Find latest asset id: find_latest_asset run: | - latest_file=$(ls -t ../../out/make/* | head -n1) + latest_file=$(ls -t out/make/* | head -n1) asset_path=$(realpath --relative-to=./ "$latest_file") echo "::set-output name=asset_path::$asset_path" diff --git a/dist/index.html b/dist/index.html index f2fd8a3..44e9555 100644 --- a/dist/index.html +++ b/dist/index.html @@ -25,8 +25,8 @@
Welcome to your Electron application v1.1.2
+Welcome to your Electron application v1.2.7
First paragraph
Second paragraph
Third paragraph
diff --git a/index.html b/index.html index 4581e33..32f0a2f 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,7 @@Welcome to your Electron application v1.2.7
+Welcome to your Electron application v1.2.8
First paragraph
Second paragraph
Third paragraph
diff --git a/package.json b/package.json index b46e37b..9c2084a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hoseki-admin", "productName": "hoseki-admin", - "version": "1.2.7", + "version": "1.2.8", "description": "Hoseki admin app test", "main": ".vite/build/main.js", "scripts": {