Skip to content

Commit

Permalink
make bundle (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkarlsen committed Sep 8, 2023
1 parent 74695ce commit f21fd20
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
run: |
echo "VERSION=$(git describe --tag --always)" >> $GITHUB_ENV
echo "CLEAN_VERSION=$(git describe --tag --always | sed s/^v//)" >> $GITHUB_ENV
echo "IMG=ghcr.io/${{ github.repository }}:${{ env.CLEAN_VERSION }}" >> $GITHUB_ENV
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
Expand All @@ -41,4 +42,8 @@ jobs:

- name: build and push
run: |
make docker-buildx bundle bundle-build bundle-push IMG=ghcr.io/${{ github.repository }}:${{ env.CLEAN_VERSION }}
make docker-buildx bundle bundle-build bundle-push IMG=${{ env.IMG }}
- name: catalog
run: |
make catalog-build catalog-push

0 comments on commit f21fd20

Please sign in to comment.