forked from gatewayd-io/gatewayd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added github action for Docker Scout compare
- Loading branch information
1 parent
9788963
commit 3c752c3
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Build and release test | ||
|
||
on: | ||
push: | ||
branches: | ||
- "feature/integrate_docker_scout_with_gitHub_actions" | ||
tags: ["*"] | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build-and-release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
packages: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Go 1.22 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.22" | ||
cache: true | ||
- name: Install nfpm for building Linux packages | ||
run: go install github.com/goreleaser/nfpm/v2/cmd/nfpm@latest | ||
- name: Build and release binaries | ||
run: make build-release | ||
- name: Build and release Linux packages | ||
run: make build-linux-packages | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Sign in to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract metadata | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
gatewaydio/gatewayd | ||
ghcr.io/gatewayd-io/gatewayd | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
platforms: linux/amd64 | ||
load: true | ||
provenance: mode=max | ||
sbom: true | ||
tags: "ghcr.io/sinadarbouy/gatewayd:test" |