Version v0.1.2

This commit is contained in:
Nikolai Rodionov 2023-02-15 09:01:11 +01:00
parent aa3435ee7b
commit b596961291
4 changed files with 8 additions and 3 deletions

View File

@ -52,6 +52,8 @@ jobs:
- name: Build helmfile
uses: docker/build-push-action@v2
with:
build-args: |
BASE_VERSION=${{ env.TAG }}
builder: ${{ steps.buildx.outputs.name }}
context: ./dockerfiles
file: ./dockerfiles/Dockerfile-helmfile
@ -70,6 +72,8 @@ jobs:
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
build-args: |
BASE_VERSION=${{ env.TAG }}
context: ./dockerfiles
file: ./dockerfiles/Dockerfile-argo
platforms: linux/amd64,linux/arm64

2
Cargo.lock generated
View File

@ -46,7 +46,7 @@ checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4"
[[package]]
name = "cdh"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"clap",
"clap_complete",

View File

@ -1,7 +1,7 @@
[package]
name = "cdh"
authors = ["allanger <allanger@zohomail.com>"]
version = "0.1.1"
version = "0.1.2"
description = "Your helm releases are outdated, aren't they? Now you can check"
edition = "2021"

View File

@ -1,4 +1,5 @@
FROM ghcr.io/allanger/dumb-downloader as builder
ARG BASE_VERSION=latest
FROM ghcr.io/allanger/dumb-downloader:${BASE_VERSION} as builder
RUN apt-get update -y && apt-get install tar -y
ARG HELM_VERSION=v3.10.3
ARG HELMFILE_VERSION=0.150.0