add EdDSA decoder, fix twisted edwards coordinate recovery #8
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: Build Release | |
on: | |
push: | |
branches: 'main' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 23 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '23' | |
distribution: 'temurin' | |
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies. | |
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 | |
with: | |
gradle-version: '8.10.2' | |
- name: Install lftp | |
run: sudo apt-get install -y lftp | |
- name: Build | |
run: gradle jsBrowserDistribution | |
- name: Deploy | |
env: | |
DEPLOY_KEY: ${{ secrets.FTP_DEPLOY_KEY }} | |
DEPLOY_HOST: ${{ secrets.FTP_DEPLOY_HOST }} | |
run: lftp -c "open -e \"mput build/dist/js/productionExecutable/*;\" -u \"bytewitch-ci\",\"${DEPLOY_KEY}\" ${DEPLOY_HOST}" |