Skip to content

Update module k8s.io/component-helpers to v0.29.1 #175

Update module k8s.io/component-helpers to v0.29.1

Update module k8s.io/component-helpers to v0.29.1 #175

Workflow file for this run

name: 'ci'
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
types: [opened, reopened, synchronize]
jobs:
dagger:
runs-on: ubuntu-latest
services:
argocd-redis:
image: redis
ports:
- "6379:6379"
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Setup go
uses: actions/setup-go@v4
with:
go-version: '>=1.20'
-
name: Install
run: go get dagger.io/dagger@latest
-
name: Release and deploy with Dagger
run: go run ci/main.go
env:
REGISTRY_PASSWORD: '${{ secrets.REGISTRY_PASSWORD }}'
REGISTRY_USER: '${{ secrets.REGISTRY_USER }}'
GITHUB_ACCESS_TOKEN: '${{ secrets.GH_ACCESS_TOKEN }}'
REGISTRY_URL: '${{ secrets.REGISTRY_URL }}'