Skip to content

Commit

Permalink
Merge pull request #66 from LCOGT/feature/argo-cd
Browse files Browse the repository at this point in the history
Feature/argo cd
  • Loading branch information
mgdaily authored Dec 13, 2024
2 parents d598636 + 4141883 commit 17b3483
Show file tree
Hide file tree
Showing 34 changed files with 1,743 additions and 5 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "Continuous Deployment"
on:
push:
branches:
- main
release:
types:
- published

jobs:
cd:
uses: LCOGT/reusable-workflows/.github/workflows/continuous-deployment.yaml@main
secrets: inherit
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ yarn-error.log
*.ntvs*
*.njsproj
*.sln

.devenv
.pre-commit-config.yaml
local-kubeconfig
5 changes: 0 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,3 @@
FROM node:11-alpine as builder
COPY . .
RUN npm install && npm run build

# Production Deployment container
FROM nginx:1.16-alpine
COPY --from=builder dist/ /usr/share/nginx/html/dist
COPY --from=builder index.html index.js /usr/share/nginx/html/
Loading

0 comments on commit 17b3483

Please sign in to comment.