Skip to content

Commit

Permalink
chore: print api/ui/build contents
Browse files Browse the repository at this point in the history
  • Loading branch information
jirevwe committed Sep 2, 2024
1 parent 78eb799 commit fc3b7f7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
required: true
push:
tags:
# Release binary for every tag.
- v*

env:
Expand Down Expand Up @@ -49,27 +48,29 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Download Build Artifact
uses: actions/download-artifact@v4
with:
name: dist-without-markdown
path: api/ui/build
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21

- name: Check out code
uses: actions/checkout@v4

- name: Get and verify dependencies
run: go mod tidy && go mod download && go mod verify

- name: Go vet
run: go vet ./...

- name: List contents of api/ui/build
run: ls -R api/ui/build

- name: Build app to make sure there are zero issues
run: |
export CGO_ENABLED=0
Expand Down

0 comments on commit fc3b7f7

Please sign in to comment.