Skip to content

Commit

Permalink
Merge pull request #29 from astrochun/28_public_dir
Browse files Browse the repository at this point in the history
Change Container action to write static pages to a public folder
  • Loading branch information
astrochun authored Apr 4, 2021
2 parents 10d448e + 5a8c621 commit 6f1a07f
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 5 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [v0.3.2](https://github.com/astrochun/github-stats-pages/tree/v0.3.2) (2021-04-04)

**Implemented enhancements:**
- Change Container action to write static pages to a public folder [#29](http://github.com/astrochun/github-stats-pages/pull/29)

**Closed issues:**
- Change Container action to write static pages to a public folder [#28](http://github.com/astrochun/github-stats-pages/issues/28)


## [v0.3.1](https://github.com/astrochun/github-stats-pages/tree/v0.3.1) (2021-04-02)

**Implemented enhancements:**
- Implement a Docker Actions to gather stats and build pages [#26](http://github.com/astrochun/github-stats-pages/pull/26)

**Closed issues:**
- Implement a Docker Actions to gather stats and build pages [#20](http://github.com/astrochun/github-stats-pages/issues/20)
- Bug: Fix typo with exclude_repo in make_stats_plots [#24](http://github.com/astrochun/github-stats-pages/issues/24)
- Fix namespace for include-repo and exclude-repo [#25](http://github.com/astrochun/github-stats-pages/issues/25)


## [v0.3.0](https://github.com/astrochun/github-stats-pages/tree/v0.3.0) (2021-03-23)

**Implemented enhancements:**
Expand All @@ -9,8 +29,9 @@
- Module and script to generate plots [#16](http://github.com/astrochun/github-stats-pages/issues/16)
- Add CHANGELOG.md [#18](http://github.com/astrochun/github-stats-pages/issues/18)


**Merged pull requests:**
- Fix tag issue with CI run [#19](https://github.com/astrochun/github-stats-pages/pull/19)


## [v0.2.0](https://github.com/astrochun/github-stats-pages/tree/v0.2.0) (2021-02-27)

Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ fi
get_repo_list -u $1
gts_run_all_repos -u $1 -t $2 -c "$1".csv ${test}
merge-csv.sh .
make_stats_plots -u $1 -t $2 -c "$1".csv ${include_repos} ${exclude_repos}
make_stats_plots -u $1 -t $2 -c "$1".csv -o ./public ${include_repos} ${exclude_repos}
2 changes: 1 addition & 1 deletion github_stats_pages/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.1"
__version__ = "0.3.2"
2 changes: 1 addition & 1 deletion github_stats_pages/stats_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def make_plots(username: str, data_dir: str, out_dir: str, csv_file: str,
# Add repo folder for all static repo pages
p_repos = Path(out_dir) / "repos"
if not p_repos.exists():
p_repos.mkdir()
p_repos.mkdir(parents=True)

# Get unique repository names
repo_names = set()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='github-stats-pages',
version='0.3.1',
version='0.3.2',
packages=['github_stats_pages'],
scripts=['scripts/get_repo_list',
'scripts/gts_run_all_repos',
Expand Down

0 comments on commit 6f1a07f

Please sign in to comment.