How can I deploy an artifact from a Github Workflow?
I am using a new technology from Jetbrains called Writerside. Its a markdown based documentation deployment system. I have the building to the point of where it compiles to an artifact with a .zip containg the entire website inside of it. How can I deploy this to cloudflare pages?
Worflow with artifact: https://github.com/flytegg/flyte-docs/actions/runs/6567342130
GitHub
fix: Fixed deploy.yml · flytegg/flyte-docs@6b76232
Documentation for Flyte. https://docs.flyte.gg. Contribute to flytegg/flyte-docs development by creating an account on GitHub.
4 Replies
Ah I just found something big that I didn't know existed. Would I just deploy the artifact using the second option?
Well that seems like the way to go. I have my api token + account id, just a little lost on creating the workflow to upload my artifact
Can use the Pages Action to deploy https://github.com/cloudflare/pages-action
Just need a step that extracts the .zip file
Thank you! ❤️