Skip to content

Commit

Permalink
feat: adding release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MidKnightXI committed Jul 20, 2024
1 parent 1c1d2b7 commit 921fbe2
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
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 enhance-global.zip denoising_model.tch run.py module.json requirements.txt

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: enhance-global.zip
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# ENHANCE

AI model to denoise images
AI model to denoise images
File renamed without changes.

0 comments on commit 921fbe2

Please sign in to comment.