Merge pull request #24 from UndeadZeratul/main #15
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 "reusable-ammoboxes-${{ github.ref_name }}.pk3" . -i sprites/* zscript/* LANGUAGE.* LICENSE MAPINFO README.md SNDINFO zscript.zs | |
- name: Release PK3 | |
uses: softprops/action-gh-release@v0.1.7 | |
with: | |
generate_release_notes: true | |
discussion_category_name: 'Releases' | |
files: ./*.pk3 |