Skip to content

Release 1.6.0

Release 1.6.0 #128

Workflow file for this run

name: PR-WORKFLOW
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
save-pr-number:
runs-on: ubuntu-latest
steps:
- name: make directory
run: mkdir output
- name: Save PR number
run: echo ${{ github.event.number }} > ./output/NR
- name: save to artifact
uses: actions/upload-artifact@v2
with:
name: packets
path: output
test:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
mcVersionIndex: ["1.8", "1.9", "1.10", "1.11", "1.11.2", "1.12", "1.13", "1.14", "1.15", "1.16", "1.16.5"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Setup Java JDK
uses: actions/[email protected]
with:
java-version: 17
java-package: jre
- run: npm install
- name: Use Dumper
run: |
mkdir output
node bin/dumpPackets -v ${{ matrix.mcVersionIndex }} -o output/${{ matrix.mcVersionIndex }}
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: packets
path: output