mirror of
https://github.com/OpenFusionProject/Client.git
synced 2024-11-25 06:40:15 +00:00
Compare commits
37 Commits
5714ce3512
...
76e47814a5
Author | SHA1 | Date | |
---|---|---|---|
|
76e47814a5 | ||
|
b6f676a50f | ||
|
ec7f494f41 | ||
|
7956f653fb | ||
|
fe6f42f67c | ||
|
c3dc79b42a | ||
|
e11023df54 | ||
|
51f0c06092 | ||
|
695fcaebb6 | ||
|
01a4318db5 | ||
|
4105472d3c | ||
|
8f05ace344 | ||
|
b51e49d703 | ||
|
6f3f3290d7 | ||
|
f6ae8f0b6c | ||
|
3dc1c1ae45 | ||
|
490d335336 | ||
|
cf0737cb60 | ||
|
ea1715e27c | ||
|
59f0e155dd | ||
|
d391faefb7 | ||
|
9c3219f203 | ||
|
e980ca5d65 | ||
|
9183d3338d | ||
|
096fcee49f | ||
|
e74106e137 | ||
|
9ee982b53c | ||
|
b2ba0ba1b6 | ||
|
60aba00ad5 | ||
|
1c3e3f81b0 | ||
|
f7d1b73806 | ||
|
a1678cb1e9 | ||
|
3f56895d3b | ||
|
2c5337938a | ||
|
b644edb774 | ||
|
ee309319c9 | ||
|
01e329e621 |
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
@ -3,7 +3,6 @@ name: Publish Build
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
tags: '*'
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
@ -13,11 +12,9 @@ jobs:
|
|||||||
runs-on: windows-2022
|
runs-on: windows-2022
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Set up Node.js 20.x
|
- name: Set up Node.js 20.x
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 20.x
|
node-version: 20.x
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
@ -31,17 +28,19 @@ jobs:
|
|||||||
path: dist
|
path: dist
|
||||||
|
|
||||||
publish-release:
|
publish-release:
|
||||||
if: contains(github.ref, 'refs/tags/')
|
if: github.ref_type == 'tag'
|
||||||
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: "artifact/*-ia32-win.zip,artifact/*.exe"
|
artifacts: "*-ia32-win.zip,*.exe"
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
@ -173,7 +173,7 @@
|
|||||||
APP_VERSION_NUMBER
|
APP_VERSION_NUMBER
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
©2020-2024 OpenFusion Contributors<br />OpenFusion
|
©2020-2023 OpenFusion Contributors<br />OpenFusion
|
||||||
is licensed under MIT.<br />
|
is licensed under MIT.<br />
|
||||||
</p>
|
</p>
|
||||||
<a
|
<a
|
||||||
|
Loading…
Reference in New Issue
Block a user