mirror of
https://github.com/absmach/supermq.git
synced 2026-06-23 07:00:25 +00:00
f7dad77613
* refactor: move codecov.yaml file Signed-off-by: Felix Gateru <felix.gateru@gmail.com> * refactor: remove config yaml referece Signed-off-by: Felix Gateru <felix.gateru@gmail.com> * refactor: add auto generated api files to ignore Signed-off-by: Felix Gateru <felix.gateru@gmail.com> --------- Signed-off-by: Felix Gateru <felix.gateru@gmail.com>
63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
# Copyright (c) Abstract Machines
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
name: Continuous Delivery
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-and-push:
|
|
name: Build and Push
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Fetch tags for the build
|
|
run: |
|
|
git fetch --prune --unshallow --tags
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: 1.24.x
|
|
cache-dependency-path: "go.sum"
|
|
|
|
- name: Run tests
|
|
run: |
|
|
make test
|
|
|
|
- name: Upload coverage
|
|
uses: codecov/codecov-action@v5
|
|
with:
|
|
token: ${{ secrets.CODECOV }}
|
|
files: ./coverage/*.out
|
|
verbose: true
|
|
|
|
- name: Set up Docker Build
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v3.4
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Build and push Dockers
|
|
run: |
|
|
make latest -j $(nproc)
|
|
|
|
- name: Trigger Helm Chart Deployment
|
|
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
uses: peter-evans/repository-dispatch@v3
|
|
with:
|
|
token: ${{ secrets.REPO_DISPATCH_TOKEN }}
|
|
repository: absmach/amdm
|
|
event-type: deploy-latest-mg-images
|