Skip to content

Commit c0b1dd9

Browse files
committed
Fix release building [no-ci]
Signed-off-by: Georgia Stuart <[email protected]>
1 parent 2596cda commit c0b1dd9

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

.github/workflows/release_build.yml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Release Build Configurations
22

3-
# on:
4-
# push:
5-
# tags:
6-
# - "v*.*.*"
7-
# branches:
8-
# - "main"
3+
on:
4+
push:
5+
tags:
6+
- "v*.*.*"
7+
branches:
8+
- "main"
99

10-
on:
11-
- push
10+
# on:
11+
# - push
1212

1313
jobs:
1414
build:
@@ -20,11 +20,11 @@ jobs:
2020
date-ranges:
2121
- {arg: "2023-01-01 2023-12-31", suffix: "2023"}
2222
- {arg: "2023-01-01 2023-03-31", suffix: "2023-Q1"}
23-
- {arg: "2023-04-01 2023-06-30", suffix: "2023-Q2"}
24-
- {arg: "2023-07-01 2023-09-30", suffix: "2023-Q3"}
25-
- {arg: "2023-10-01 2023-12-31", suffix: "2023-Q4"}
26-
- {arg: "2022-07-01 2023-06-30", suffix: "2022-2023-academic"}
27-
- {arg: "2023-07-01 2024-06-30", suffix: "2023-2024-academic"}
23+
# - {arg: "2023-04-01 2023-06-30", suffix: "2023-Q2"}
24+
# - {arg: "2023-07-01 2023-09-30", suffix: "2023-Q3"}
25+
# - {arg: "2023-10-01 2023-12-31", suffix: "2023-Q4"}
26+
# - {arg: "2022-07-01 2023-06-30", suffix: "2022-2023-academic"}
27+
# - {arg: "2023-07-01 2024-06-30", suffix: "2023-2024-academic"}
2828
personal-goals: [{arg: "--personal-goals", suffix: ""}, {arg: "--no-personal-goals", suffix: "-no-personal-goals"}]
2929
work-goals: [{arg: "--work-goals", suffix: ""}, {arg: "--no-work-goals", suffix: "-no-work-goals"}]
3030
daily-pages: [{arg: "--daily-pages", suffix: ""}, {arg: "--no-daily-pages", suffix: "-no-daily"}]
@@ -60,5 +60,7 @@ jobs:
6060
- name: Download planners
6161
uses: actions/download-artifact@v3
6262
id: download
63-
- name: Get list of all artifacts in directory
64-
run: find ${{steps.download.outputs.download-path}} -type f *.pdf
63+
- name: Release
64+
uses: softprops/action-gh-release@v1
65+
with:
66+
files: ${{steps.download.outputs.download-path}}/**/*.pdf

0 commit comments

Comments
 (0)