diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..8f0d0de --- /dev/null +++ b/.github/workflows/release.yml @@ -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 \ No newline at end of file diff --git a/README.md b/README.md index 28a9415..15f603a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # ENHANCE -AI model to denoise images +AI model to denoise images diff --git a/runner.py b/run.py similarity index 100% rename from runner.py rename to run.py