File tree Expand file tree Collapse file tree 5 files changed +9
-8
lines changed Expand file tree Collapse file tree 5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ All notable changes to this project will be documented in this file.
31
31
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
32
32
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
33
33
34
- ## [ Unreleased ]
34
+ ## 1.1.0 - 2021-01-09
35
35
36
36
### Added
37
37
@@ -46,6 +46,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
46
46
47
47
### Changed
48
48
49
+ - Changed to use pip when installing qiita-sync in GitHub Actions
49
50
- Changed Python version to 3.7 and 3.10.1 in GitHub Actions
50
51
- Changed project information in pyproject.toml
51
52
- Changed .gitignore to exlucde dist directory
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ See more details [Qiita-Sync Command Usage](https://github.com/ryokat3/qiita-syn
39
39
- ` .github/workflow/qiita_sync.yml `
40
40
- ` .github/workflow/qiita_sync_check.yml `
41
41
42
- ** NOTE** : Change the cron time ` cron: "29 17 * * *" ` of ` qiita_sync_check.yml ` when the this action is sheduled to be executed.
43
- This example indicates that this action is executed every day at 17:29 UTC, which is kind of inactive time for me who is living in Japan.
42
+ ** NOTE** : Change the cron time ` cron: "29 17 * * *" ` of ` qiita_sync_check.yml ` which is the time when this action is sheduled to be executed.
43
+ ` 29 17 * * * ` indicates that this action is executed every day at 17:29 UTC, which is kind of inactive time for me who is living in Japan.
44
44
Please adjust it to your convenience.
45
45
46
46
3 . Push them to GitHub
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ jobs:
19
19
python-version : ' 3.9'
20
20
- name : Install qiita-sync
21
21
run : |
22
- curl -OL https://raw.githubusercontent.com/ryokat3/ qiita-sync/v1.0.0/qiita_sync/qiita_sync.py
22
+ python -m pip install qiita-sync
23
23
- name : Run qiita-sync
24
24
run : |
25
- python qiita_sync.py sync .
25
+ qiita_sync sync .
26
26
env :
27
27
QIITA_ACCESS_TOKEN : ${{ secrets.QIITA_ACCESS_TOKEN }}
28
28
- name : Git
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ jobs:
22
22
python-version : ' 3.9'
23
23
- name : Install qiita-sync
24
24
run : |
25
- curl -OL https://raw.githubusercontent.com/ryokat3/ qiita-sync/v1.0.0/qiita_sync/qiita_sync.py
25
+ python -m pip install qiita-sync
26
26
- name : Run qiita-sync check
27
27
run : |
28
- python qiita_sync.py check . > ./qiita_sync_output.txt
28
+ qiita_sync check . > ./qiita_sync_output.txt
29
29
cat ./qiita_sync_output.txt
30
30
[ ! -s "qiita_sync_output.txt" ] || exit 1
31
31
env :
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " qiita-sync"
3
- version = " 1.0.8 "
3
+ version = " 1.1.0 "
4
4
description = " Synchronize GitHub with Qiita"
5
5
authors = [" Ryoji Kato <ryokat3@gmail.com>" ]
6
6
readme = " README.md"
You can’t perform that action at this time.
0 commit comments