-
Following up on the discussion here: #202 Is there a way to specify that this action should preserve a folder from the previous I want to use this action to track changes in Is there a way to declare folder(s)/file(s) that should remain on 1.) Build my static site and copy the contents of Many thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
I think what happens is that the deploy on https://github.com/manzt/vizarr/commits/gh-pages that removes the versioned doc isn't for the main revision that has the exclusion. The run that has that ends up not changing the gh-pages branch, and thus doesn't push. Can you back out manzt/vizarr@deeceba and try again? You shouldn't need |
Beta Was this translation helpful? Give feedback.
-
So, the deploy that removed v0.1 is from manzt/vizarr@3e0871d (you can tell from the commit message). You added the The removal run was probably https://github.com/manzt/vizarr/runs/1488410747, which had You'll need to add |
Beta Was this translation helpful? Give feedback.
-
Thanks for walking me through that! Seems to be working now. I really appreciate it. |
Beta Was this translation helpful? Give feedback.
So, the deploy that removed v0.1 is from manzt/vizarr@3e0871d (you can tell from the commit message). You added the
CLEAN_EXCLUDE
in manzt/vizarr@4b95659, which is the next commit. That ran the publishing action, but there were no local changes, so it didn't update anything.The removal run was probably https://github.com/manzt/vizarr/runs/1488410747, which had
CLEAN
, but notCLEAN_EXCLUDE
. Not exactly sure where that's coming from, tbh.You'll need to add
v0.1
again, either by doing the same steps you did the first time, or via https://git-scm.com/docs/git-restore.