Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.5.1 #265

Merged
merged 24 commits into from
May 19, 2024
Merged

4.5.1 #265

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b2059ee
chore(deps): bump class-validator from 0.13.2 to 0.14.0
dependabot[bot] May 3, 2024
0d45b16
fix: text wrap and overflow
nini22P May 4, 2024
5a4f9ae
Merge pull request #258 from nini22P/dev
nini22P May 4, 2024
54992f2
feat: add text-align and text-shadow
unlimitedcodeG May 4, 2024
93a89e1
add .tar.gz to releases for linux
hshqwq May 4, 2024
3f6e6cc
upload component
hshqwq May 4, 2024
0c218c5
Merge branch 'main' into dev
hshqwq May 4, 2024
2243f4c
fix: update vite config
MakinoharaShoko May 4, 2024
a618efb
Merge pull request #260 from hshqwq/dev
MakinoharaShoko May 7, 2024
02dc732
fix: text align initial value
MakinoharaShoko May 7, 2024
249a78f
Merge pull request #259 from unlimitedcodeG/dev
MakinoharaShoko May 7, 2024
4d012ee
Merge pull request #256 from OpenWebGAL/dependabot/npm_and_yarn/class…
MakinoharaShoko May 7, 2024
cd062c9
update packages
MakinoharaShoko May 7, 2024
7a63e88
update package
MakinoharaShoko May 7, 2024
761f493
update engine
MakinoharaShoko May 10, 2024
0843013
fix: export game with engine template
MakinoharaShoko May 11, 2024
a4d5c6a
fix: multiple ls register
MakinoharaShoko May 11, 2024
860836f
fix: #262
MakinoharaShoko May 11, 2024
276fb7b
update engine
MakinoharaShoko May 11, 2024
e666018
update engine
MakinoharaShoko May 19, 2024
f66e6af
fix: rename problem #264
MakinoharaShoko May 19, 2024
8b598b2
add translations
MakinoharaShoko May 19, 2024
48fa645
update version number
MakinoharaShoko May 19, 2024
581079f
Update releasenote.md
MakinoharaShoko May 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 24 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,21 @@ jobs:
run: sh release-linux.sh

- name: Compress
run: 7z a -tzip WebGAL_Terre_Linux.zip release/*
run: |
7z a -tzip WebGAL_Terre_Linux.zip release/*
tar -zcf WebGAL_Terre_Linux.tar.gz release/*

- name: Upload Artifact
- name: Upload Artifact (zip)
uses: actions/upload-artifact@v2
with:
name: WebGAL_Terre_Linux
name: WebGAL_Terre_Linux(zip)
path: WebGAL_Terre_Linux.zip

- name: Upload Artifact (tar.gz)
uses: actions/upload-artifact@v2
with:
name: WebGAL_Terre_Linux(tar.gz)
path: WebGAL_Terre_Linux.tar.gz
build-arm64:
name: Build Linux ARM64 Binary
runs-on: ubuntu-latest
Expand Down Expand Up @@ -116,12 +124,22 @@ jobs:
echo "WebGAL Terre is now ready to be deployed."

- name: Compress
run: 7z a -tzip WebGAL_Terre_Linux_Arm64.zip release/*
- name: Upload Artifact
run: |
7z a -tzip WebGAL_Terre_Linux_Arm64.zip release/*
tar -zcf WebGAL_Terre_Linux_Arm64.tar.gz release/*

- name: Upload Artifact (zip)
uses: actions/upload-artifact@v2
with:
name: WebGAL_Terre_Linux_Arm64
name: WebGAL_Terre_Linux_Arm64(zip)
path: WebGAL_Terre_Linux_Arm64.zip

- name: Upload Artifact (tar.gz)
uses: actions/upload-artifact@v2
with:
name: WebGAL_Terre_Linux_Arm64(tar.gz)
path: WebGAL_Terre_Linux_Arm64.tar.gz

build-mac:
name: Build MacOS Binary
runs-on: macos-14
Expand Down
Loading
Loading