Skip to content

Commit

Permalink
Bump chart version to 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuakraitberg committed Apr 1, 2023
1 parent f4c1be2 commit 92db012
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 3 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
name: Tag

on:
schedule:
- cron: "0 12 * * *"

jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- name: Get latest release tag
id: latest_release
uses: "actions/github-script@v4"
with:
script: |
const response = await octokit.rest.repos.getLatestRelease({
owner: context.repo.owner,
repo: context.repo.repo,
});
console.log(response.data.tag_name);
outputs:
tag: ${{ steps.latest_release.outputs.tag }}

- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ steps.latest_release.outputs.tag }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v1

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push docker image
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
push: true
tags: joshuakraitberg/cert-manager-webhook-duckdns:${{ steps.latest_release.outputs.tag }}
4 changes: 2 additions & 2 deletions charts/cert-manager-webhook-duckdns/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v1
name: cert-manager-webhook-duckdns
version: 1.4.1
appVersion: 1.4.1
version: 1.4.2
appVersion: 1.4.2
description: A Helm chart for cert manager webhook solver for ACME DNS01 challenge via DuckDNS
home: https://github.com/joshuakraitberg/cert-manager-webhook-duckdns
icon: https://raw.githubusercontent.com/jetstack/cert-manager/master/logo/logo.png
Expand Down
2 changes: 1 addition & 1 deletion charts/cert-manager-webhook-duckdns/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ clusterIssuer:

image:
repository: joshuakraitberg/cert-manager-webhook-duckdns
tag: 1.4.1
tag: 1.4.2
pullPolicy: IfNotPresent

certManager:
Expand Down

0 comments on commit 92db012

Please sign in to comment.