Create Release

This commit is contained in:
Mark Rapson 2023-12-16 22:39:07 +00:00 committed by GitHub
parent 7a294f753d
commit e18108ba33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

22
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Create release
on:
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Zip Folder
run: zip -r ${{ github.event.repository.name }}.zip ./Wrench/
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{ github.event.repository.name }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}