Skip to content

Commit

Permalink
other: add AutuBuildPush
Browse files Browse the repository at this point in the history
  • Loading branch information
Chikage0o0 committed Dec 9, 2022
1 parent 0b22fd5 commit bbdfd07
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/AutoBuildPackWhenPush.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: AutoBuildPackWhenPushh

on:
push:


jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}

- uses: actions/setup-go@v3
with:
go-version: '1.19'

- name: build modpack
run: bash build.sh


- name: update artifacts
uses: actions/upload-artifact@v3
with:
name: mrpack
path: ./*.mrpack

0 comments on commit bbdfd07

Please sign in to comment.