-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(main): 백그라운드 이미지, 예고일 불러오기 (#43)
- Loading branch information
Showing
12 changed files
with
82 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,17 +40,27 @@ jobs: | |
[ | ||
{ "command": "getData", "args": { "worksheetTitle": "color", "minCol": 1 } } | ||
] | ||
- id: main-about-project | ||
name: Load Google Sheet - Main, About, Project | ||
- id: main-about | ||
name: Load Google Sheet - Main, About | ||
uses: jroehl/[email protected] | ||
with: | ||
spreadsheetId: ${{ env.SPREADSHEET_ID }} | ||
commands: | | ||
[ | ||
{ "command": "getData", "args": { "worksheetTitle": "M-Auto", "minCol": 1 } }, | ||
{ "command": "getData", "args": { "worksheetTitle": "M-background", "minCol": 1 } }, | ||
{ "command": "getData", "args": { "worksheetTitle": "About", "minCol": 1 } }, | ||
{ "command": "getData", "args": { "worksheetTitle": "A-image", "minCol": 1 } }, | ||
{ "command": "getData", "args": { "worksheetTitle": "A-information", "minCol": 1 } }, | ||
{ "command": "getData", "args": { "worksheetTitle": "A-review", "minCol": 1 } }, | ||
{ "command": "getData", "args": { "worksheetTitle": "A-review", "minCol": 1 } } | ||
] | ||
- id: project | ||
name: Load Google Sheet - Project | ||
uses: jroehl/[email protected] | ||
with: | ||
spreadsheetId: ${{ env.SPREADSHEET_ID }} | ||
commands: | | ||
[ | ||
{ "command": "getData", "args": { "worksheetTitle": "Project", "minCol": 1 } } | ||
] | ||
- id: recruitment | ||
|
@@ -78,7 +88,8 @@ jobs: | |
] | ||
- name: make contents | ||
run: | | ||
echo ${{ toJson(steps.main-about-project.outputs.results) }} > ./_content/data.json | ||
echo ${{ toJson(steps.project.outputs.results) }} > ./_content/project.json | ||
echo ${{ toJson(steps.main-about.outputs.results) }} > ./_content/data.json | ||
echo ${{ toJson(steps.contact.outputs.results) }} > ./content/contact.json | ||
echo ${{ toJson(steps.color.outputs.results) }} > ./_content/color.json | ||
python .script/make_content.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
$about-mobile: url("https://drive.google.com/uc?export=view&id=1-dFesvicUYbZZkdinkC5PjKCfPN2i080"); | ||
$about-desktop: url("https://drive.google.com/uc?export=view&id=1-dFesvicUYbZZkdinkC5PjKCfPN2i080"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
$main-default-mobile: url("https://drive.google.com/uc?export=view&id=1TjrG8BEZcNUyTPCRjhpWNuy5XQPdhcTu"); | ||
$main-default-desktop: url("https://drive.google.com/uc?export=view&id=1TjrG8BEZcNUyTPCRjhpWNuy5XQPdhcTu"); | ||
$main-notice-mobile: url("https://drive.google.com/uc?export=view&id=10TPX2Qxgg95riX0XKAXuKwpbt5zlzDQF"); | ||
$main-notice-desktop: url("https://drive.google.com/uc?export=view&id=10TPX2Qxgg95riX0XKAXuKwpbt5zlzDQF"); | ||
$main-wip-mobile: url("https://drive.google.com/uc?export=view&id=10TPX2Qxgg95riX0XKAXuKwpbt5zlzDQF"); | ||
$main-wip-desktop: url("https://drive.google.com/uc?export=view&id=10TPX2Qxgg95riX0XKAXuKwpbt5zlzDQF"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters