Skip to content

Commit

Permalink
fix: amd64 image not generated (#122)
Browse files Browse the repository at this point in the history
* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated
  • Loading branch information
braghettos authored Dec 27, 2024
1 parent e0cd773 commit 6bbf91e
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/release-pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,19 @@ jobs:
platforms: ${{ matrix.platform }}
push: false
labels: ${{ steps.meta.outputs.labels }}

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Gather dependencies
run: go mod download
- name: Run coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
18 changes: 17 additions & 1 deletion .github/workflows/release-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,20 @@ jobs:
- name: Inspect image
run: |
docker buildx imagetools inspect ${{ env.GHCR_REPO }}:${{ steps.meta.outputs.version }}
docker buildx imagetools inspect ${{ env.GHCR_REPO }}:${{ steps.meta.outputs.version }}
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Gather dependencies
run: go mod download
- name: Run coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 6bbf91e

Please sign in to comment.