ci: none release images named: shortcommitsha #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Push Chart | |
on: push | |
# push: | |
# branches: | |
# - main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Helm lint & package & push | |
run: | | |
cd chart | |
helm registry login ${GHR} -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} | |
helm registry login ${MTR} -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD} | |
helm lint . | |
helm package . | |
helm push $(ls *.tgz| head -1) oci://${GHR}/${{ github.repository_owner }}/charts | |
helm push $(ls *.tgz| head -1) oci://${MTR}/${ORG}/charts | |
env: | |
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} | |
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}} | |
GHR: ghcr.io | |
MTR: mtr.devops.telekom.de | |
ORG: caas |