This was not the issue #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Building of TypeWriter | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Build Engine | |
uses: ./.github/actions/build-engine | |
# ---------------------------------------------------------------------------------------------------- | |
- name: Build Extensions | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: test buildRelease --scan | |
build-root-directory: ./extensions | |
- name: Upload Jars as Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Typewriter-Alpha-Builds | |
path: | | |
jars/engine/*.jar | |
jars/extensions/*.jar | |
retention-days: 1 |