We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95a237f commit add2e08Copy full SHA for add2e08
.github/workflows/terraform_destroy.yml
@@ -52,6 +52,13 @@ jobs:
52
name: "credentials.json"
53
json: ${{ secrets.GCP_SERVICE_ACCOUNT_JSON_VALUE }}
54
55
+ # Create github ssh key directory
56
+ - name: Configure github ssh
57
+ run: |-
58
+ mkdir .ssh
59
+ echo "${{ secrets.PUBLIC_KEY_GITHUB }}" > .ssh/id_ed25519.pub
60
+ echo "${{ secrets.SECRET_KEY_GITHUB }}" > .ssh/id_ed25519
61
+
62
# destroy GCP instance
63
- name: destory GCP Compute Engine
64
run: make clean
0 commit comments