Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

release

release #47

Workflow file for this run

### Author: Frish2021 ###
name: release
on:
workflow_dispatch:
jobs:
build:
name: Build NBT-jar
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
java-version: '8'
distribution: 'temurin'
architecture: x64
- name: Build Jar!
run: chmod +x ./scripts/build.sh && bash ./scripts/build.sh
- name: Upload artifacts
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: '${{ secrets.VERSION }}'
name: 'NBT-${{ secrets.VERSION }}'
files: 'target/**'