Install clang #25
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: CI | |
on: | |
push: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
id: qemu | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Publish Docker image to GitHub Container Registry | |
env: | |
REGISTRY: ghcr.io/masudur-rahman | |
DOCKER_TOKEN: ${{ secrets.GH_TOKEN }} | |
USERNAME: masudur-rahman | |
run: | | |
docker login ghcr.io --username ${USERNAME} --password ${DOCKER_TOKEN} | |
make release | |
- name: Publish Docker image to Docker Container Registry | |
env: | |
REGISTRY: masudjuly02 | |
SRC_REG: ghcr.io/masudur-rahman | |
DOCKER_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | |
USERNAME: masudjuly02 | |
run: | | |
docker login --username ${USERNAME} --password ${DOCKER_TOKEN} | |
make release |