32 lines
831 B
YAML
32 lines
831 B
YAML
name: "Test updatecli action"
|
|
on:
|
|
push:
|
|
branches:
|
|
- "**"
|
|
env:
|
|
DEBIAN_FRONTEND: noninteractive
|
|
TZ: UTC
|
|
|
|
jobs:
|
|
test-updateclis:
|
|
runs-on: docker
|
|
container:
|
|
image: ghcr.io/catthehacker/ubuntu:runner-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: false
|
|
- name: call updatecli action
|
|
uses: https://git.cleverthis.com/actions/updatecli-deploy@masters
|
|
with:
|
|
registry-url: git.cleverthis.com
|
|
registry-user: ${{ secrets.GIT_USERNAME }}
|
|
registry-password: ${{ secrets.GIT_PASSWORD }}
|
|
charts-repo-org: infra
|
|
charts-repo-name: charts
|
|
name: management-service
|
|
# TODO: testing only, should be forge.ref_name
|
|
ref-name: develop
|
|
docker-tag: test-tag-do-not-merge
|
|
|