Add optional field codecs with correct error propagation #233
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: 'Deploy Javadoc π' | |
on: | |
push: | |
branches: | |
- '1.20' | |
jobs: | |
deploy: | |
if: startsWith(github.repository, 'ModdingX/') # don't run this in forks | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout ποΈ' | |
uses: 'actions/checkout@v3' | |
with: | |
persist-credentials: false | |
- name: 'Install Java π΅' | |
uses: 'actions/setup-java@v3' | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: 'Install and Build π§' | |
run: './gradlew javadoc' | |
- name: 'Deploy π' | |
uses: 'JamesIves/[email protected]' | |
with: | |
branch: gh-pages | |
folder: 'build/docs/javadoc' | |
clean: true | |
git-config-name: 'Github Actions' | |
git-config-email: '<>' |