Merge pull request #24 from Eroc/main #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release PK3s | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
buildAndRelease: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: build PK3 | |
uses: montudor/action-zip@v1 | |
with: | |
args: zip -r "ace-corp-extended-${{ github.ref_name }}.pk3" . -i brightmaps/* graphics/* models/* patches/* sounds/* sprites/* zscript/* ANIMDEFS CVARINFO DECALDEF.* GLDEFS.* KEYCONF LANGUAGE LICENSE MAPINFO MENUDEF MODELDEF.* README.* SNDINFO.* TEXTCOLO TEXTURES.* WTBLKLST zscript.zs | |
- name: Release PK3 | |
uses: softprops/[email protected] | |
with: | |
generate_release_notes: true | |
discussion_category_name: 'Releases' | |
files: ./*.pk3 |