mirror of
https://github.com/OpenFusionProject/Client.git
synced 2024-11-25 06:40:15 +00:00
Compare commits
37 Commits
76e47814a5
...
5714ce3512
Author | SHA1 | Date | |
---|---|---|---|
|
5714ce3512 | ||
|
7f9c5d90a1 | ||
|
17f194810c | ||
|
87072b0789 | ||
|
e933bc52fe | ||
|
1078778e16 | ||
|
5dca39a17e | ||
|
0eca42cdf8 | ||
|
fa0bdd7b1a | ||
|
feafd8d17f | ||
|
6a7b029539 | ||
|
171177b606 | ||
|
1c2cf41e97 | ||
|
0201f11333 | ||
|
a859590ef9 | ||
|
356e811bac | ||
|
cdabb36639 | ||
|
547ca778b0 | ||
|
6bae0d1ff6 | ||
|
11f0c61a67 | ||
|
1d78bc2d9b | ||
|
c78a3e5ada | ||
|
c05e9c0dcd | ||
|
e1ef76744a | ||
|
04aea6059e | ||
|
600b33a230 | ||
|
48efd00a4a | ||
|
f28c9c0bb8 | ||
|
e3f16d8fc9 | ||
|
6f7f1655b9 | ||
|
597e80b112 | ||
|
79bdba74a5 | ||
|
16a99f86c7 | ||
|
05af8a3f9e | ||
|
27f0992b52 | ||
|
132b725922 | ||
|
b5ab9aad2d |
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
@ -3,6 +3,7 @@ name: Publish Build
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
tags: '*'
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
@ -12,9 +13,11 @@ jobs:
|
||||
runs-on: windows-2022
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Set up Node.js 20.x
|
||||
uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20.x
|
||||
cache: 'npm'
|
||||
@ -28,19 +31,17 @@ jobs:
|
||||
path: dist
|
||||
|
||||
publish-release:
|
||||
if: github.ref_type == 'tag'
|
||||
if: contains(github.ref, 'refs/tags/')
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
|
||||
steps:
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@master
|
||||
- name: Unzip artifact
|
||||
run: unzip artifact.zip
|
||||
- name: Create release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: "*-ia32-win.zip,*.exe"
|
||||
artifacts: "artifact/*-ia32-win.zip,artifact/*.exe"
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
@ -173,7 +173,7 @@
|
||||
APP_VERSION_NUMBER
|
||||
</p>
|
||||
<p>
|
||||
©2020-2023 OpenFusion Contributors<br />OpenFusion
|
||||
©2020-2024 OpenFusion Contributors<br />OpenFusion
|
||||
is licensed under MIT.<br />
|
||||
</p>
|
||||
<a
|
||||
|
Loading…
Reference in New Issue
Block a user