We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 800dfed commit 3686f13Copy full SHA for 3686f13
1 file changed
.github/workflows/ci.yaml
@@ -25,6 +25,16 @@ jobs:
25
steps:
26
- name: Checkout
27
uses: actions/checkout@v5
28
+ # TODO: remove when this repo is made public
29
+ - uses: webfactory/ssh-agent@v0.6.0
30
+ with:
31
+ ssh-private-key: |
32
+ ${{ secrets.TEMP_DEPLOY_KEY }}
33
+ - name: Configure Git for Private Modules
34
+ run: |
35
+ go env -w GOPRIVATE="github.com/stackitcloud/pulumi-stackit"
36
+ git config --global url."ssh://git@github.com/".insteadOf "https://github.com/"
37
+ # TODO: remove end
38
- name: Unshallow clone for tags
39
run: git fetch --prune --unshallow --tags
40
- name: Install pulumictl
0 commit comments