Merge pull request #395 from gatewayd-io/group-name-in-windows-logger #68
Workflow file for this run
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
name: Build and release GatewayD | |
on: | |
push: | |
tags: | |
- "v*" | |
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.21 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.21" | |
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 Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Sign in to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
gatewaydio/gatewayd:${{ github.ref_name }} | |
gatewaydio/gatewayd:latest | |
ghcr.io/gatewayd-io/gatewayd:${{ github.ref_name }} | |
ghcr.io/gatewayd-io/gatewayd:latest | |
- name: Scan Docker image with Syft and generate SBOM | |
run: | | |
go install github.com/anchore/syft/cmd/syft@latest | |
syft packages docker:gatewaydio/gatewayd:${{ github.ref_name }} --file gatewayd-image-${{ github.ref_name }}.cyclonedx.json --output cyclonedx-json | |
- name: Scan source code and generate SBOM | |
run: | | |
go install github.com/CycloneDX/cyclonedx-gomod/cmd/cyclonedx-gomod@latest | |
cyclonedx-gomod mod -json -licenses -output gatewayd-source-${{ github.ref_name }}.cyclonedx.json | |
- name: Create release and add artifacts | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
dist/*.tar.gz | |
dist/checksums.txt | |
dist/*.deb | |
dist/*.rpm | |
dist/*.zip | |
gatewayd-image-${{ github.ref_name }}.cyclonedx.json | |
gatewayd-source-${{ github.ref_name }}.cyclonedx.json | |
draft: false | |
prerelease: false | |
tag_name: ${{ github.ref_name }} | |
name: ${{ github.ref_name }} | |
generate_release_notes: true |