frontend build hash
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
9b21bca587
commit
4f1f392f72
|
@ -11,7 +11,7 @@ steps:
|
|||
- name: frontend
|
||||
image: node:16.13.1-alpine
|
||||
commands:
|
||||
- cd frontend && npm install && npm run build
|
||||
- cd frontend && npm install && REACT_APP_GIT_SHA="${DRONE_BRANCH//\//-}-${DRONE_COMMIT_SHA:0:8}" npm run build
|
||||
volumes:
|
||||
- name: cache
|
||||
path: /drone/src/frontend/node_modules
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import React, { Component } from 'react';
|
||||
|
||||
import { BsFileEarmarkCodeFill, BsTwitter } from "react-icons/bs";
|
||||
import { BsTwitter } from "react-icons/bs";
|
||||
|
||||
export default class Footer extends Component {
|
||||
render() {
|
||||
|
@ -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>{' '}
|
||||
<a href="https://sergio.am/code/xrg.es"><BsFileEarmarkCodeFill /></a></small>
|
||||
Build <a href="https://sergio.am/code/xrg.es"><tt>{process.env.REACT_APP_GIT_SHA}</tt></a></small>
|
||||
</footer>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue