upgraded paper/spigot to 1.21.1, bungeecord to 1.20 #3
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
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Publish WorkFlows for ELDependenci feature/hotfix branch | |
on: | |
push: | |
branches: | |
- '*/*' | |
- '!master' | |
- '!develop' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source Code | |
id: checkout-source | |
uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- run: mvn --batch-mode -Dmaven.deploy.skip=true -Dmaven.javadoc.skip=true clean package | |
name: build plugins | |
- uses: actions/upload-artifact@v4 | |
name: 'upload plugins' | |
with: | |
name: 'plugins' | |
path: 'outputs/' |