Skip to content

Commit

Permalink
feat: update build-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jirevwe committed Aug 20, 2024
1 parent 0a8cc25 commit e56310a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ jobs:
name: Build UI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build Artifact
run: "make ui_install type=ce"

- name: Archive Build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: dist-without-markdown
path: |
Expand All @@ -47,9 +48,9 @@ jobs:
dockerfile: slim.Dockerfile

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download Build Artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: dist-without-markdown
path: api/ui/build
Expand Down
2 changes: 1 addition & 1 deletion scripts/ui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildUi() {
cd ./web/ui/dashboard || exit 1

# Install dependencies
npm ci
npm i

# Run production build
if [[ "$build" == "ce" ]]; then
Expand Down

0 comments on commit e56310a

Please sign in to comment.