Skip to content

Commit

Permalink
feat: adding github action
Browse files Browse the repository at this point in the history
  • Loading branch information
MidKnightXI committed Jun 29, 2024
1 parent c4b6d6f commit 7fc37ae
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Create Release

on:
push:
tags:
- 'v*.*.*'

jobs:
create_release:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install zip
run: sudo apt-get install zip -y

- name: Zip files
run: zip blurwarp-global.zip blur_detection_model.tch run.py module.json requirements.txt

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: blurwarp-global.zip

0 comments on commit 7fc37ae

Please sign in to comment.