Skip to content

Commit

Permalink
refactor: removed obsolte docker cleanup step from deploy_infrastruct…
Browse files Browse the repository at this point in the history
…ure action
  • Loading branch information
tmeckel committed Jul 6, 2024
1 parent a7dcc3b commit 1203a95
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions .github/actions/deploy_infrastructure/action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Deploy Cerulean Infratructure
description: |-
This action deploys the Cerulean infrastructure
inputs:
environment:
description: |-
Expand All @@ -18,16 +19,10 @@ inputs:
description: |-
The passphrahse to encrypt secrets in the Pulumi stack
required: true

runs:
using: "composite"
steps:
- name: Clean all existing Docker images
id: prune-docker
shell: bash
run: |
docker image prune -a -f
df -H
- name: Install Python
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -81,13 +76,6 @@ runs:
command: up
stack-name: ${{ inputs.environment }}

- name: Prune Docker environment
shell: bash
run: |
docker container prune -f
docker buildx prune -f
docker images
# Copy shared database_client.py files
- name: Copy Shared File
shell: bash
Expand Down

0 comments on commit 1203a95

Please sign in to comment.