Skip to content

Commit

Permalink
Merge pull request #219 from datarootsio/adding-in-progress-status
Browse files Browse the repository at this point in the history
fixing build cmd
  • Loading branch information
bart6114 authored Oct 11, 2024
2 parents 43e3792 + a6c1a0a commit f8db304
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- id: vars
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
- run: mkdir -p ${{ matrix.goos }}/${{ matrix.goarch }}
- run: env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -ldflags="-X 'github.com/datarootsio/cheek/pkg.Version=${{ needs.version_tag.outputs.new_tag }}' -X 'github.com/datarootsio/cheek/pkg.CommitSHA=${{ steps.vars.outputs.sha_short }}'" -o ${{ matrix.goos }}/${{ matrix.goarch }}
- run: env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -ldflags="-X 'github.com/datarootsio/cheek/pkg.version=${{ needs.version_tag.outputs.new_tag }}' -X 'github.com/datarootsio/cheek/pkg.commitSHA=${{ steps.vars.outputs.sha_short }}'" -o ${{ matrix.goos }}/${{ matrix.goarch }}
- run: cp ${{ matrix.goos }}/${{ matrix.goarch }}/cheek ${{ matrix.goos }}/${{ matrix.goarch }}/cheek-${{ steps.vars.outputs.sha_short }}
- run: cp ${{ matrix.goos }}/${{ matrix.goarch }}/cheek ${{ matrix.goos }}/${{ matrix.goarch }}/cheek-${{ needs.version_tag.outputs.new_tag }}
## upload binary to google storage
Expand Down
2 changes: 1 addition & 1 deletion pkg/web_assets/templates/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<div x-data x-init="$store.version.init()">
<p class="pt-2 text-xs text-slate-400">
shows statuses up until the last 10 runs (running cheek v<span x-text="$store.version.version" class="text-gray-500"></span>)
shows statuses up until the last 10 runs (running cheek <span x-text="$store.version.version" class="text-gray-500"></span>)
</p>
</div>

Expand Down

0 comments on commit f8db304

Please sign in to comment.