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