Skip to content

build(deps): bump helmfile/helmfile from v0.169.1 to v0.169.2 #13

build(deps): bump helmfile/helmfile from v0.169.1 to v0.169.2

build(deps): bump helmfile/helmfile from v0.169.1 to v0.169.2 #13

Workflow file for this run

name: Build and push Docker image
on:
workflow_dispatch:
push:
branches:
- main
tags:
- "v*"
pull_request:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker image metadata
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/zerodayyy/argocd-plugin-helmfile
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}