docs: fix dead MineWave link to public Discord invite #5
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
| # Pack the MCDR plugin on every push/PR, and attach the .mcdr to a Release on tags. | |
| name: package | |
| on: [push, pull_request] | |
| jobs: | |
| package: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: setup python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.11' | |
| - name: install mcdreforged | |
| run: python -m pip install --upgrade pip mcdreforged | |
| - name: pack plugin | |
| run: python -m mcdreforged pack -o ./build | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: DigAll | |
| path: build/*.mcdr | |
| - name: publish to release | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: build/*.mcdr |