File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " opensr-srgan"
7- version = " 0.1.5 "
7+ version = " 0.1.6 "
88description = " Modular Super-Resolution GAN Framework for Remote Sensing."
99readme = " README.md"
1010authors = [
You can’t perform that action at this time.
0 commit comments