Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ltmx committed Mar 1, 2024
2 parents 170544e + 3f97a95 commit e566e5e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

name: Create release

on:
push:
branches:
- master
tags:
- '*.*.*'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Zip Folder
run: zip -r ${{ github.event.repository.name }}.zip .

- 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 }}

0 comments on commit e566e5e

Please sign in to comment.