Bump copyright date to 2024 and version to 1.5.2; update build.yml

This commit is contained in:
CakeLancelot 2024-04-02 05:12:41 -05:00
parent 01ee292d10
commit b5ab9aad2d
5 changed files with 12 additions and 12 deletions

View File

@ -3,6 +3,7 @@ name: Publish Build
on: on:
push: push:
branches: [ "main" ] branches: [ "main" ]
tags: '*'
permissions: permissions:
contents: write contents: write
@ -12,9 +13,11 @@ jobs:
runs-on: windows-2022 runs-on: windows-2022
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js 20.x - name: Set up Node.js 20.x
uses: actions/setup-node@v3 uses: actions/setup-node@v4
with: with:
node-version: 20.x node-version: 20.x
cache: 'npm' cache: 'npm'
@ -28,20 +31,17 @@ jobs:
path: dist path: dist
publish-release: publish-release:
if: startsWith(github.ref, 'refs/tags/v') if: contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build needs: build
steps: steps:
- name: Download artifact - name: Download artifact
uses: actions/download-artifact@master uses: actions/download-artifact@master
- name: Unzip artifact
run: unzip artifact.zip
- name: Create release - name: Create release
uses: ncipollo/release-action@v1 uses: ncipollo/release-action@v1
with: with:
artifacts: "*-ia32-win.zip,*.exe" artifacts: "artifact/*-ia32-win.zip,artifact/*.exe"
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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"> <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">
<assemblyIdentity type="win32" name="OpenFusion.Client" version="1.5.0.0" processorArchitecture="x86" /> <assemblyIdentity type="win32" name="OpenFusion.Client" version="1.5.2.0" processorArchitecture="x86" />
<dependency> <dependency>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity type="Win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"> <assemblyIdentity type="Win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*">

View File

@ -149,7 +149,7 @@
APP_VERSION_NUMBER APP_VERSION_NUMBER
</p> </p>
<p> <p>
©2020-2023 OpenFusion Contributors<br />OpenFusion ©2020-2024 OpenFusion Contributors<br />OpenFusion
is licensed under MIT.<br /> is licensed under MIT.<br />
</p> </p>
<a <a

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "OpenFusionClient", "name": "OpenFusionClient",
"version": "1.5.1", "version": "1.5.2",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "OpenFusionClient", "name": "OpenFusionClient",
"version": "1.5.1", "version": "1.5.2",
"hasInstallScript": true, "hasInstallScript": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "OpenFusionClient", "name": "OpenFusionClient",
"version": "1.5.1", "version": "1.5.2",
"description": "OpenFusionClient", "description": "OpenFusionClient",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {