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 119acd3 commit 6906da5Copy full SHA for 6906da5
.github/workflows/build-and-publish.yml
@@ -19,7 +19,6 @@ jobs:
19
- name: setup-ssh
20
env:
21
SSH_KEY: ${{ secrets.ssh_key }}
22
- GH_TOKEN: ${{ github.token }}
23
run: |
24
mkdir /root/.ssh
25
python3 -c "import os; file = open('/root/.ssh/id_rsa', 'w'); file.write(os.environ['SSH_KEY']); file.close()"
@@ -28,6 +27,8 @@ jobs:
28
27
chmod 400 /root/.ssh/known_hosts
29
ssh-keyscan -H github.com > /etc/ssh/ssh_known_hosts 2> /dev/null
30
- name: build-and-push
+ env:
31
+ GH_TOKEN: ${{ github.token }}
32
33
set -x
34
buf generate
0 commit comments