Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 868 Bytes

readme.md

File metadata and controls

38 lines (30 loc) · 868 Bytes

Temporary

Simple

name: Hello World

on:
  # This lets us manually trigger the workflow from GitHub website
  workflow_dispatch:
  # This is a standard CI trigger based git push to a specific branch
  push:
    branches: ["main"]

# We can set variables
env:
  MESSAGE: Hello world!

# This is about the simplest single job & single step workflow possible
jobs:
  hello-world:
    runs-on: ubuntu-latest
    steps:
      - run: echo $MESSAGE
#az acr credential show --name $ACR_NAME --query "passwords[0].value" -o tsv
gh secret set ACR_PASSWORD --body "$(az acr credential show --name $ACR_NAME --query "passwords[0].value" -o tsv)"
gh secret set CLUSTER_KUBECONFIG --body "$(az aks get-credentials -g $RES_GROUP -n $AKS_NAME --file -)"
az acr repository show-tags --name $ACR_NAME --repository smilr/data-api