Skip to content

web app at /k8s/

web app at /k8s/ #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
ci:
runs-on: ubuntu-22.04
permissions:
packages: write
contents: read
env:
DOCKER_IMAGE: ghcr.io/kamatera/cloudcli-server-kubernetes:${{ github.sha }}
steps:
- uses: actions/checkout@v4
- run: |
docker build -t ${DOCKER_IMAGE} . &&\
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin &&\
docker push ${DOCKER_IMAGE}