Create release.yml

This commit is contained in:
Waylon Walker 2023-03-09 17:55:01 -06:00 committed by GitHub
parent bc49369fc4
commit a5332cae95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: relese
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Setup Go environment
uses: actions/setup-go@v3.5.0
- run: go install github.com/packwiz/packwiz@latest
- run: packwiz refresh
- run: packwiz modrinth export
- run: |
VERSION=`cat pack.toml | grep ^version | sed 's/version = "\(.*\)"/\1/'`
gh release create v$VERSION --generate-notes *.mrpack