I have a shiny app that I built using golem. The app is to be run locally on the user's computer, rather than on a shiny server. I deployed the package using the 03_deploy.R script
that is automatically created by golem, using devtools::build()
to build a new tar.gz. However, when I make changes to the app and redeploy it (create a new tar.gz), none of my changes appear. I also tried updating the version in the DESCRIPTION file, but that doesn't work either. The changes do appear if I change the name of the package.
How can I redeploy it, with the changes, without having to change the name of the package every time I want to update it?
Thanks!