Update explicitly non-allowed farm types #31
This file contains hidden or 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: 'Publish to lumamc.net' | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| environment: publishing | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: "temurin" | |
| java-version: 21 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Publish website to lumamc.net | |
| uses: gradle/gradle-build-action@v3 | |
| env: | |
| PTERO_URL: ${{ secrets.PTERO_URL }} | |
| PTERO_SERVER: ${{ secrets.PTERO_SERVER }} | |
| PTERO_TOKEN: ${{ secrets.PTERO_TOKEN }} | |
| with: | |
| arguments: yarnInstall build --stacktrace |