Skip to content

Merge branch 'dev' #296

Merge branch 'dev'

Merge branch 'dev' #296

Workflow file for this run

on:
push:
branches:
- "dev"
- "main"
- "feature/delegation"
permissions:
packages: write
jobs:
converge:
name: Skaffold Build To Github
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Log in to registry
# This is where you will update the personal access token to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Cache layers
uses: actions/cache@v3
with:
path: "${{ github.workspace }}/.skaffold/cache"
key: skaffold-${{ hashFiles('**/cache') }}
restore-keys: |
skaffold-
- name: Run Skaffold pipeline as command
uses: hiberbee/github-action-skaffold@latest
id: build
with:
command: build --tag ${{ github.sha }}
repository: ghcr.io/${{ github.repository_owner }}
deploy:
name: Deploy
needs: converge
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/dev'
steps:
- name: ConfigCreate
run: |
mkdir ~/.kube/
echo "${{ secrets.KUBECONFIG }}" > config
mv config ~/.kube/
ls ~/.kube/
kubectl set image deployment/morpheus-dev-webclient webclient=ghcr.io/morpheusais/dashboard:$GITHUB_SHA -n morpheus-dev