Skip to content

Commit

Permalink
Merge branch 'hotfix/3.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
beatrizsmerino committed Jun 26, 2024
2 parents 6354212 + ba5e541 commit 8547adc
Show file tree
Hide file tree
Showing 12 changed files with 9,629 additions and 9,716 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
node-version: 20.x
- name: 📦 Install dependencies
run: npm ci
run: npm install
- name: 🙍‍♂️ Setup git user
run: |
git config user.name "Beatriz Sopeña Merino"
Expand Down
4 changes: 2 additions & 2 deletions README-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ jobs:
with:
node-version: 20.x
- name: 📦 Install dependencies
run: npm ci
run: npm install
- name: 🙍‍♂️ Setup git user
run: |
git config user.name <USER_NAME>
Expand All @@ -273,7 +273,7 @@ This GitHub Actions workflow is designed to streamline the deployment of your pr

1. `🔀 Checkout code from repository`: Retrieve the code from your repository, cloning it into the GitHub Actions runner and making it available to the workflow.
2. `🛠️ Setup Node version`: Prepares the GitHub Actions runner with Node.js version 20.x, to ensure compatibility with your project's Node.js version requirements.
3. `📦 Install dependencies`: Executes `npm ci` command for a clean install of your project's dependencies, ensuring a consistent environment for the deployment.
3. `📦 Install dependencies`: Executes `npm install` command to install your project's dependencies, ensuring a consistent environment for the deployment.
4. `🙍‍♂️ Setup git user`: Sets up Git with your name and email, to associate your identity with the commits made during the deployment process.
5. `🏗️ Deploy project`: Runs the `npm run deploy:v2` command defined in your `package.json`, which triggers the script of `deploy-v2.mjs` file, for building and deploying your project to the `gh-pages` branch.

Expand Down
Loading

0 comments on commit 8547adc

Please sign in to comment.