Skip to content

Update quay.io/argoproj/argocd Docker tag to v2.8.4 - autoclosed #138

Update quay.io/argoproj/argocd Docker tag to v2.8.4 - autoclosed

Update quay.io/argoproj/argocd Docker tag to v2.8.4 - autoclosed #138

Workflow file for this run

name: Docker Build
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
workflow_dispatch:
jobs:
build_and_publish_docker_images:
name: "Build and Publish Docker"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/${{ github.repository }}
- name: Build and Push
uses: docker/build-push-action@v4
with:
context: .
push: ${{ GitHub.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}