Skip to content

Commit fe8042b

Browse files
committed
fix CI
1 parent 1a675b3 commit fe8042b

3 files changed

Lines changed: 22 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ jobs:
3333
if: matrix.python-version == '3.11'
3434
uses: codecov/codecov-action@v4
3535
with:
36-
# For public repos token is optional; for private, add:
37-
# token: ${{ secrets.CODECOV_TOKEN }}
36+
token: ${{ secrets.CODECOV_TOKEN }}
3837
files: ./coverage.xml
3938
flags: unittests
4039
fail_ci_if_error: true

.github/workflows/release.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Create GitHub Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*" # triggers for any tag starting with 'v'
7+
8+
permissions:
9+
contents: write # required for creating releases
10+
11+
jobs:
12+
release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Create GitHub Release
18+
uses: softprops/action-gh-release@v2
19+
with:
20+
generate_release_notes: true

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "opensr-srgan"
7-
version = "0.1.5"
7+
version = "0.1.6"
88
description = "Modular Super-Resolution GAN Framework for Remote Sensing."
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)