Replies: 3 comments 1 reply
-
Is your repo public? Can you share a link to the repo? If your projects https://github.com/retypeapp/action-build#specify-path-to-the-retypeyml-file - uses: retypeapp/action-build@v1
with:
config: wiki Hope this helps. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the quick reply
I've played around with this already. If I understand it correctly, it takes the retype.yml file in the targeted directory, generates the retype html files, and creates the retype branch with only that information. Which isn't really what I was looking for. Maybe I'm just miss-understanding how to utilize the stuff in the uses: field. I'm now thinking that I should make the action generate the retype portion of the site, then merge it with the normal html portion? My repo is here https://github.com/xenilen/xenilen.github.io My goal is to have /index.html be my homepage, separate from the retype wiki located in /redteam_cookbook/index.html Also, it's kind of confusing that the name retype.yml is used multiple times for different things in the docs ie here and here |
Beta Was this translation helpful? Give feedback.
-
I can see three options here, in order of complexity: Simplest, all in same branch, hide retype sources by folder.
And that should do it. You may want to set up the workflow to trigger only if the changes pushed affect the A little more elaborate, same GitHubPages setting, retype files in another (orphan) branch
Then every time you push changes to Retype, or More complex: Retype sources (.md files, configuration) in another repoI will only describe this one, as it would require more knowledge about github actions and GitHub personal access token (PAT). Basically, place Retype actual sources (config file and md docs) in a separate repo, and replace the This one would be particularly challenging because, as the changes should go across different repos, further authentication needs to take place to send to other repos. I have tried to be as brief and detailed as possible; if you choose an option and have trouble going thru it, let us know. The "simple", first option may be suggested as a pull request to your repo, the other two will require action from repo owner. (create branch, integrate with other repo) |
Beta Was this translation helpful? Give feedback.
-
Hello!
I'm trying to configure retypeapp/action-build and retypeapp/action-github-pages to only build files from a specific directory/sub-directories. However, it seems like there isn't a feature present to change the working directory. Maybe there is and I am doing something wrong.
Example site setup:
/ (Where your main site is)
/wiki (Where I want the retypeapp to live)
The only thing I've found is
But this doesn't apply to
uses:
Beta Was this translation helpful? Give feedback.
All reactions