mirror of
https://github.com/arcan1s/ffxivbis.git
synced 2026-04-08 03:23:44 +00:00
Compare commits
3 Commits
0.15.4
...
8a37c66be8
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a37c66be8 | |||
| af7a92af35 | |||
| 4c05ceefcd |
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
@@ -12,6 +12,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: extract version
|
- name: extract version
|
||||||
id: version
|
id: version
|
||||||
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
|
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
|
||||||
@@ -21,13 +22,24 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
filter: 'Release \d+\.\d+\.\d+'
|
filter: 'Release \d+\.\d+\.\d+'
|
||||||
|
|
||||||
- name: setup JDK
|
- name: setup JDK
|
||||||
uses: actions/setup-java@v2
|
uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
distribution: temurin
|
distribution: temurin
|
||||||
java-version: 18
|
java-version: 18
|
||||||
|
|
||||||
|
- name: install sbt
|
||||||
|
uses: eclipse-score/apt-install@main
|
||||||
|
with:
|
||||||
|
packages: wget
|
||||||
|
- run: |
|
||||||
|
wget https://scala.jfrog.io/artifactory/debian/sbt-1.11.7.deb
|
||||||
|
dpkg -i sbt-1.11.7.deb
|
||||||
|
|
||||||
- name: create dist
|
- name: create dist
|
||||||
run: make dist
|
run: make dist
|
||||||
|
|
||||||
- name: release
|
- name: release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
|
|||||||
10
.github/workflows/run-tests.yml
vendored
10
.github/workflows/run-tests.yml
vendored
@@ -13,10 +13,20 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: setup JDK
|
- name: setup JDK
|
||||||
uses: actions/setup-java@v2
|
uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
distribution: temurin
|
distribution: temurin
|
||||||
java-version: 18
|
java-version: 18
|
||||||
|
|
||||||
|
- name: install sbt
|
||||||
|
uses: eclipse-score/apt-install@main
|
||||||
|
with:
|
||||||
|
packages: wget
|
||||||
|
- run: |
|
||||||
|
wget https://scala.jfrog.io/artifactory/debian/sbt-1.11.7.deb
|
||||||
|
dpkg -i sbt-1.11.7.deb
|
||||||
|
|
||||||
- name: run tests
|
- name: run tests
|
||||||
run: make tests
|
run: make tests
|
||||||
|
|||||||
@@ -12,5 +12,5 @@ trait ValidatorHelper {
|
|||||||
|
|
||||||
object ValidatorHelper {
|
object ValidatorHelper {
|
||||||
|
|
||||||
final val VALID_CHARACTERS = HashSet.from("!@#$%^&*()-_=+;:',./? ")
|
final val VALID_CHARACTERS = HashSet.from("!@#$%^&*()-_=+;:',./?| ")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
version := "0.15.4"
|
version := "0.15.5"
|
||||||
|
|||||||
Reference in New Issue
Block a user