Skip to content

Commit 122cbaa

Browse files
authored
chore: fix build job (#10984)
1 parent 15875a7 commit 122cbaa

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -643,21 +643,24 @@ jobs:
643643
with:
644644
fetch-depth: 0
645645

646+
- name: GHCR Login
647+
uses: docker/login-action@v3
648+
with:
649+
registry: ghcr.io
650+
username: ${{ github.actor }}
651+
password: ${{ secrets.GITHUB_TOKEN }}
652+
646653
- name: Setup Node
647654
uses: ./.github/actions/setup-node
648655

649656
- name: Setup Go
650657
uses: ./.github/actions/setup-go
651658

652-
- name: Setup sqlc
653-
uses: ./.github/actions/setup-sqlc
659+
- name: Install nfpm
660+
run: go install github.com/goreleaser/nfpm/v2/cmd/nfpm@v2.16.0
654661

655-
- name: GHCR Login
656-
uses: docker/login-action@v3
657-
with:
658-
registry: ghcr.io
659-
username: ${{ github.actor }}
660-
password: ${{ secrets.GITHUB_TOKEN }}
662+
- name: Install zstd
663+
run: sudo apt-get install -y zstd
661664

662665
- name: Build
663666
run: |

0 commit comments

Comments
 (0)