We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 40125f3 + fd68626 commit 126ae31Copy full SHA for 126ae31
.github/workflows/node.js.yml
@@ -20,8 +20,15 @@ jobs:
20
- name: Checkout the code
21
uses: actions/checkout@v4
22
23
+ - name: Set up SSH keys for GitHub
24
+ run: |
25
+ mkdir -p ~/.ssh
26
+ echo "${{ secrets.GITHUB_SSH_KEY }}" > ~/.ssh/id_rsa
27
+ chmod 600 ~/.ssh/id_rsa
28
+ ssh-keyscan github.com >> ~/.ssh/known_hosts
29
+
30
- name: Add submodule for newsletter_modal
- run: git submodule add https://github.com/aabhinavg1/newletter_modal.git src/components/newsletter_modal
31
+ run: git submodule add git@github.com:aabhinavg1/newletter_modal.git src/components/newsletter_modal
32
33
- name: Set up Node.js ${{ matrix.node-version }}
34
uses: actions/setup-node@v4
0 commit comments