feat: add AppCode into canceled token table #210
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: 'Deploy Production' | |
on: | |
push: | |
tags: | |
- v** | |
- '!**beta**' | |
jobs: | |
Deploy: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Get Docker Image Url | |
id: image | |
env: | |
CORE: harbor.ncuos.com/genius-auth/core | |
SSH_DEV: harbor.ncuos.com/genius-auth/ssh-server | |
run: | | |
echo CORE_LATEST=${CORE}:latest >> $GITHUB_OUTPUT | |
echo CORE_VERSION=${CORE}:${GITHUB_REF/refs\/tags\//} >> $GITHUB_OUTPUT | |
echo SSH_DEV_LATEST=${SSH_DEV}:latest >> $GITHUB_OUTPUT | |
echo SSH_DEV_VERSION=${SSH_DEV}:${GITHUB_REF/refs\/tags\//} >> $GITHUB_OUTPUT | |
- name: Build Core Docker Image | |
run: | | |
docker build . --file Dockerfile.core \ | |
--tag ${{ steps.image.outputs.CORE_VERSION }} \ | |
--tag ${{ steps.image.outputs.CORE_LATEST }} | |
- name: Build sshDev Docker Image | |
run: | | |
docker build . --file Dockerfile.ssh \ | |
--tag ${{ steps.image.outputs.SSH_DEV_VERSION }} \ | |
--tag ${{ steps.image.outputs.SSH_DEV_LATEST }} | |
- name: Push | |
run: | | |
docker push ${{ steps.image.outputs.CORE_VERSION }} | |
docker push ${{ steps.image.outputs.CORE_LATEST }} | |
docker push ${{ steps.image.outputs.SSH_DEV_VERSION }} | |
docker push ${{ steps.image.outputs.SSH_DEV_LATEST }} | |
- name: Update Deployments | |
uses: MultiMx/[email protected] | |
with: | |
k8s: | | |
prod: | |
backend: https://rancher.ncuos.com | |
token: ${{ secrets.CATTLE_TOKEN }} | |
dev: | |
backend: https://rancher.ncuhome.club | |
token: ${{ secrets.CATTLE_TOKEN_LOCAL }} | |
workloads: | | |
- | |
genius-auth: | |
core: | |
image: ${{ steps.image.outputs.CORE_VERSION }} | |
wait: true | |
- | |
genius-auth: | |
ssh-server: | |
image: ${{ steps.image.outputs.SSH_DEV_VERSION }} |