Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
fix: version
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Sanchis Gallego committed Feb 4, 2022
1 parent 83579f9 commit 5752b3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/schedule_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
NEW_INFECTED_URL: ${{ secrets.NEW_INFECTED_URL }}
steps:
- uses: actions/checkout@v2
with:
ref: prod

- name: Install dependencies 👨🏻‍💻
run: npm ci --prefer-offline --no-audit

Expand Down
4 changes: 2 additions & 2 deletions components/footer/index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import React from 'react'
import styles from './footer.module.css'

import json from './../../package.json'
export default function Footer () {
return (
<footer className={styles.footer}>
<p className={`align-center ${styles.noMargin}`}>Creado por <a className={styles.link} href='https://www.linkedin.com/in/adrian-sanchis-gallego-817585119/' target='_blank' rel='noreferrer'>Adrian Sanchis Gallego </a></p>
<p className={`align-center ${styles.noMargin}`}>Animate a colaborar en el proyecto en <a className={styles.link} href='https://github.com/sanchis/covid-alicante' target='_blank' rel='noreferrer'> GitHub</a></p>
<img className={styles.containerLogo} src='./logo.png' alt='logo footer' placeholder='blur' />
<p className={`align-center ${styles.noMargin}`}>Last version: {process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_MESSAGE || ''}</p>
<p className={`align-center ${styles.noMargin}`}>{json.version}</p>
</footer>
)
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "covid-alicante",
"version": "0.1.0",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit 5752b3a

Please sign in to comment.