-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
1 deletion.
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
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,11 @@ | ||
# WWDC Index Reference | ||
|
||
This part of the site pulls it's contents from the latest release in the WWDCIndex.Internal repository. | ||
|
||
## Setup | ||
|
||
Make sure the `gh` commandline tool is installed and authenticated with a user that has access to the WWDCIndex.Internal repo. (Either by logging in or providing a token in the environment.) | ||
|
||
## Build release | ||
|
||
Run `build.sh` to pull the docs from the latest release and unzip them. |
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,5 @@ | ||
#!/bin/bash -x -e | ||
rm -rf wwdcindex.zip dist | ||
gh release download -R nonstrict-hq/WWDCIndex.Internal -p "wwdcindex-*" -O ./wwdcindex.zip --clobber | ||
unzip -o ./wwdcindex.zip -d ./dist | ||
rm wwdcindex.zip |