Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit b5ab9aa

Browse files
committed
Bump copyright date to 2024 and version to 1.5.2; update build.yml
1 parent 01ee292 commit b5ab9aa

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Publish Build
33
on:
44
push:
55
branches: [ "main" ]
6+
tags: '*'
67

78
permissions:
89
contents: write
@@ -12,9 +13,11 @@ jobs:
1213
runs-on: windows-2022
1314

1415
steps:
15-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
1619
- name: Set up Node.js 20.x
17-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v4
1821
with:
1922
node-version: 20.x
2023
cache: 'npm'
@@ -28,20 +31,17 @@ jobs:
2831
path: dist
2932

3033
publish-release:
31-
if: startsWith(github.ref, 'refs/tags/v')
34+
if: contains(github.ref, 'refs/tags/')
3235
runs-on: ubuntu-latest
3336
needs: build
3437

3538
steps:
3639
- name: Download artifact
3740
uses: actions/download-artifact@master
38-
- name: Unzip artifact
39-
run: unzip artifact.zip
4041
- name: Create release
4142
uses: ncipollo/release-action@v1
4243
with:
43-
artifacts: "*-ia32-win.zip,*.exe"
44+
artifacts: "artifact/*-ia32-win.zip,artifact/*.exe"
4445
env:
4546
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4647
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47-

build/OpenFusionClient.exe.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
22
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
3-
<assemblyIdentity type="win32" name="OpenFusion.Client" version="1.5.0.0" processorArchitecture="x86" />
3+
<assemblyIdentity type="win32" name="OpenFusion.Client" version="1.5.2.0" processorArchitecture="x86" />
44
<dependency>
55
<dependentAssembly>
66
<assemblyIdentity type="Win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ <h4 class="modal-title">About OpenFusionClient</h4>
149149
APP_VERSION_NUMBER
150150
</p>
151151
<p>
152-
©2020-2023 OpenFusion Contributors<br />OpenFusion
152+
©2020-2024 OpenFusion Contributors<br />OpenFusion
153153
is licensed under MIT.<br />
154154
</p>
155155
<a

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "OpenFusionClient",
3-
"version": "1.5.1",
3+
"version": "1.5.2",
44
"description": "OpenFusionClient",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)