make sure calendar color is of type string #1121
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: Jar build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
attestations: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Build with Ant | |
run: ant -noinput -buildfile build.xml peergos_submodule_sync dist | |
- name: Create jar attestation | |
uses: actions/[email protected] | |
with: | |
subject-path: '${{ github.workspace }}/server/Peergos.jar' | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Peergos.jar | |
path: "./server/Peergos.jar" |