display tag

This commit is contained in:
Sergio Álvarez 2022-01-12 12:28:50 +01:00
parent 26f47f0c96
commit 312b9c75a6
No known key found for this signature in database
GPG Key ID: 622780889DFDBDA5
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ steps:
- name: frontend
image: node:16.13.1-alpine
commands:
- cd frontend && npm install && REACT_APP_GIT_SHA="${DRONE_BRANCH//\//-}-${DRONE_COMMIT_SHA:0:8}" npm run build
- cd frontend && npm install && REACT_APP_GIT_SHA="${DRONE_COMMIT_SHA:0:10}" REACT_APP_GIT_TAG="${DRONE_TAG}" npm run build
volumes:
- name: cache
path: /drone/src/frontend/node_modules

View File

@ -9,7 +9,7 @@ export default class Footer extends Component {
<small>
Coded by <a href="https://twitter.com/xergio">Sergio Álvarez <BsTwitter /></a>{' '}
<span className="text-muted">¦</span>{' '}
Build <a href="https://sergio.am/code/xrg.es"><tt>{process.env.REACT_APP_GIT_SHA}</tt></a>.</small>
Build <a href="https://sergio.am/code/xrg.es"><tt>{process.env.REACT_APP_GIT_SHA}</tt></a> Tag: <a href={'https://sergio.am/code/xrg.es/src/tag/'+process.env.REACT_APP_GIT_TAG}>{process.env.REACT_APP_GIT_TAG}</a>.</small>
</footer>
)
}