-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): Remove unused deployment jobs (#513)
- Loading branch information
Showing
2 changed files
with
0 additions
and
72 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,39 +112,3 @@ jobs: | |
git add ./production/flowfuse-values.yaml | ||
git commit -m "Update file-server production image to ${{ needs.upload-production-image.outputs.image }}" | ||
git push origin main | ||
deploy-stage: | ||
# if: github.ref_name == 'main' | ||
if: false | ||
name: Deploy to staging environment | ||
needs: build | ||
uses: flowfuse/github-actions-workflows/.github/workflows/[email protected] | ||
with: | ||
environment: stage | ||
service_name: 'file-server' | ||
deployment_name: 'flowforge-file' | ||
container_name: 'file-storage' | ||
image: ${{ needs.build.outputs.image }} | ||
secrets: | ||
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws_secret_access_key: ${{ secrets.AWS_ACCESS_KEY_SECRET }} | ||
temporary_registry_token: ${{ secrets.GITHUB_TOKEN }} | ||
eks_cluster_name: ${{ secrets.EKS_CLUSTER_NAME }} | ||
|
||
deploy-prod: | ||
# if: github.ref_name == 'main' | ||
if: false | ||
name: Deploy to production environment | ||
needs: [build, deploy-stage] | ||
uses: flowfuse/github-actions-workflows/.github/workflows/[email protected] | ||
with: | ||
environment: production | ||
service_name: 'file-server' | ||
deployment_name: 'flowforge-file' | ||
container_name: 'file-storage' | ||
image: ${{ needs.build.outputs.image }} | ||
secrets: | ||
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws_secret_access_key: ${{ secrets.AWS_ACCESS_KEY_SECRET }} | ||
temporary_registry_token: ${{ secrets.GITHUB_TOKEN }} | ||
eks_cluster_name: ${{ secrets.EKS_CLUSTER_NAME }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,39 +118,3 @@ jobs: | |
git add ./production/flowfuse-values.yaml | ||
git commit -m "Update forge production image to ${{ needs.upload-production-image.outputs.image }}" | ||
git push origin main | ||
deploy-stage: | ||
# if: github.ref_name == 'main' | ||
if: false | ||
name: Deploy to staging environment | ||
needs: build | ||
uses: flowfuse/github-actions-workflows/.github/workflows/[email protected] | ||
with: | ||
environment: stage | ||
service_name: 'forge-k8s' | ||
deployment_name: flowforge | ||
container_name: forge | ||
image: ${{ needs.build-multi-architecture.outputs.image }} | ||
secrets: | ||
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws_secret_access_key: ${{ secrets.AWS_ACCESS_KEY_SECRET }} | ||
temporary_registry_token: ${{ secrets.GITHUB_TOKEN }} | ||
eks_cluster_name: ${{ secrets.EKS_CLUSTER_NAME }} | ||
|
||
deploy-prod: | ||
# if: github.ref_name == 'main' | ||
if: false | ||
name: Deploy to production environment | ||
needs: [build, deploy-stage] | ||
uses: flowfuse/github-actions-workflows/.github/workflows/[email protected] | ||
with: | ||
environment: production | ||
service_name: 'forge-k8s' | ||
deployment_name: flowforge | ||
container_name: forge | ||
image: ${{ needs.build-multi-architecture.outputs.image }} | ||
secrets: | ||
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws_secret_access_key: ${{ secrets.AWS_ACCESS_KEY_SECRET }} | ||
temporary_registry_token: ${{ secrets.GITHUB_TOKEN }} | ||
eks_cluster_name: ${{ secrets.EKS_CLUSTER_NAME }} |