Skip to content

Commit

Permalink
1.2.8 test
Browse files Browse the repository at this point in the history
  • Loading branch information
TheStanish committed Jun 7, 2023
1 parent 6550dfb commit bc2b7b0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@


<div class="no-drag">
<h1 class="main-msg">Hello Hoseki!</h1>
<p>Welcome to your Electron application v1.1.2</p>
<h1 class="main-msg">Hello Hoseki! Meh</h1>
<p>Welcome to your Electron application v1.2.7</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 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.2.7</p>
<p>Welcome to your Electron application v1.2.8</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.2.7",
"version": "1.2.8",
"description": "Hoseki admin app test",
"main": ".vite/build/main.js",
"scripts": {
Expand Down

0 comments on commit bc2b7b0

Please sign in to comment.