add stdout to release notes
This commit is contained in:
@@ -57,10 +57,9 @@ jobs:
|
|||||||
- name: Install package
|
- name: Install package
|
||||||
run: poetry install --no-interaction
|
run: poetry install --no-interaction
|
||||||
- name: Generate new calendar Files
|
- name: Generate new calendar Files
|
||||||
run: poetry run generate-ics
|
run: poetry run generate-ics | tee output/run_logs.txt
|
||||||
env:
|
env:
|
||||||
GOOGLE_SERVICE_ACCOUNT_CREDS: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_CREDS }}
|
GOOGLE_SERVICE_ACCOUNT_CREDS: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_CREDS }}
|
||||||
|
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# load cached venv if cache exists
|
# load cached venv if cache exists
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
@@ -93,5 +92,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: ${{ steps.time.outputs.time }}
|
name: ${{ steps.time.outputs.time }}
|
||||||
tag_name: ${{ steps.time_tag.outputs.tag }}
|
tag_name: ${{ steps.time_tag.outputs.tag }}
|
||||||
|
body_path: output/run-logs.txt
|
||||||
files: |-
|
files: |-
|
||||||
calendars.zip
|
calendars.zip
|
||||||
@@ -30,6 +30,7 @@ async def clear_sakuracon_events(config_path="config/sakuracon.json"):
|
|||||||
async def collect_sakuracon_events(config_path="config/sakuracon.json"):
|
async def collect_sakuracon_events(config_path="config/sakuracon.json"):
|
||||||
with open(config_path) as f:
|
with open(config_path) as f:
|
||||||
cfg = json.load(f)
|
cfg = json.load(f)
|
||||||
|
print("using config:")
|
||||||
pprint.pp(cfg, indent=2)
|
pprint.pp(cfg, indent=2)
|
||||||
events, tracks = await get_event_data()
|
events, tracks = await get_event_data()
|
||||||
cals = convert_events_to_icals(events, tracks, cfg)
|
cals = convert_events_to_icals(events, tracks, cfg)
|
||||||
|
|||||||
Reference in New Issue
Block a user