forked from External/mage
This commit is contained in:
parent
996cbcaf39
commit
aaebe3927d
2 changed files with 26 additions and 1 deletions
23
.forgejo/workflows/release.yml
Normal file
23
.forgejo/workflows/release.yml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
|
||||
jobs:
|
||||
example-docker-compose:
|
||||
runs-on: alpine
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Build Mage
|
||||
run: |
|
||||
apk update
|
||||
apk add openjdk8-jdk maven
|
||||
mvn clean install -DskipTests
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: files
|
||||
path: |
|
||||
./Mage.Client/target/mage-client.zip
|
||||
./Mage.Server/target/mage-server.zip
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
socketWriteTimeout="10000"
|
||||
maxGameThreads="10"
|
||||
maxSecondsIdle="300"
|
||||
minUserNameLength="3"
|
||||
minUserNameLength="1"
|
||||
maxUserNameLength="14"
|
||||
invalidUserNamePattern="[^a-z0-9_]"
|
||||
minPasswordLength="8"
|
||||
|
|
@ -63,6 +63,8 @@
|
|||
mailUser=""
|
||||
mailPassword=""
|
||||
mailFromAddress=""
|
||||
httpAuth="false"
|
||||
authUrl=""
|
||||
/>
|
||||
<playerTypes>
|
||||
<playerType name="Human" jar="mage-player-human.jar" className="mage.player.human.HumanPlayer"/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue