Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ddvk committed Jul 16, 2022
1 parent 22e8c38 commit df97d5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:


- name: Build
run: CI="" make build
run: make build

- name: Test UI
run: make testui
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG VERSION=0.0.0
FROM --platform=$BUILDPLATFORM node:lts-alpine as uibuilder
WORKDIR /src
COPY ui .
RUN yarn && CI=false yarn build
RUN yarn && yarn build

FROM golang:1-alpine as gobuilder
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/Navigation.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Dropdown, Nav, Navbar, Button, NavDropdown, Container } from "react-bootstrap";
import { Nav, Navbar, Button, NavDropdown, Container } from "react-bootstrap";
import { logout } from "../common/actions";
import { useAuthState } from "../common/useAuthContext";
import { NavLink } from "react-router-dom";
Expand Down

0 comments on commit df97d5c

Please sign in to comment.