Skip to content

1.20.5 port (#10)

1.20.5 port (#10) #6

Workflow file for this run

name: release
on:
push:
tags:
- '*'
jobs:
build:
uses: ./.github/workflows/build.yml
release:
needs: [ build ]
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: Artifacts
path: ./
- name: Draft release
uses: ncipollo/[email protected]
with:
artifacts: ./*.jar
artifactErrorsFailBuild: true
draft: true