Skip to content

Make Release

Make Release #11

Workflow file for this run

# Creates a release from a template
name: Make Release
on:
workflow_dispatch:
inputs:
tag:
required: true
jobs:
release:
name: Make Release
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build mod
uses: ./.github/actions/build
- name: Make Release
uses: Gorilla-Tag-Modding-Group/gorilla-tag-build-tools/actions/release@main
with:
tag: ${{ inputs.tag }}
token: ${{ secrets.GITHUB_TOKEN }}