Skip to content

Merge pull request #26 from ultravioletrs/cleanup #7

Merge pull request #26 from ultravioletrs/cleanup

Merge pull request #26 from ultravioletrs/cleanup #7

Workflow file for this run

# Copyright (c) Ultraviolet
# SPDX-License-Identifier: Apache-2.0
name: Create and publish Cube Proxy Docker image
on:
push:
branches:
- main
tags:
- "v*"
paths:
- ".github/workflows/cd.yaml"
- "**.go"
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Fetch tags for the build
run: |
git fetch --prune --unshallow --tags
- name: Set up Docker Build
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
run: |
make latest