to upgrade
Ideas from books, articles & podcasts.
package.json contains deployment script. This script is a combination of two commands; gatsby build --prefix-paths
and gh-pages -d public
. In the last step of the workflow, I run this command by running the following shell script.
Before running the npm
command, I have to set the remote url of the repository, which requires a secret GITHUB_TOKEN . This is a secret that is automatically created for you when you enable Github Actions on your repository. Also, the npm
command needs the information of the user running it. We provide it using the param -u
. Read about it here
STASHED IN:
1
MORE IDEAS FROM THE SAME ARTICLE
The first step, of course, is to checkout the master branch. This is done using the actions/checkout action, which is a pretty standard action everyone uses.
One of the goals I have set for myself is to be consistant at writing. This means I will have to frequently publish the articles. For the first few posts, I did manual deployments from my laptop. Now, I have automated the process. As soon as I merge a post to the master branch, a deployment scrip...
The next step is pretty obvious. It is to install the library that the application needs using the command npm ci
. If you are wondering why I did not use npm install
, this artic...
Next, I have to build the source code. For that I need NodeJS setup in the machine where the job is running. The runner is simply a blank server at the time of creation (of course it has t...
2 Reactions
Comment
created 7 ideas
1
Comment
82 reads
created 10 ideas
1
Comment
192 reads
created 6 ideas
These ideas provide simple sources for writing ideas that can be used to come up with creative writing stories
14
Comment
538 reads
❤️ Brainstash Inc.