Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
andy128k committed Sep 10, 2024
1 parent d12b1f6 commit 3f65d35
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- master
pull_request:
branches:
- master
pull_request_target:
types:
- opened
Expand All @@ -17,9 +20,9 @@ jobs:
matrix:
erlang:
- 24.2
- 25
- 26
- 27
# - 25
# - 26
# - 27

runs-on: ubuntu-latest

Expand All @@ -30,9 +33,16 @@ jobs:
- name: Setup SSH
run: |
set -ex
mkdir -p -m 700 ~/.ssh
ssh-keygen -N '' -f ~/.ssh/id_rsa
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
mkdir -p -m 700 /root/.ssh
echo "Host github.com" > /root/.ssh/config
echo " IdentityFile /root/.ssh/id_rsa" >> /root/.ssh/config
ssh-keygen -t rsa -N '' -f /root/.ssh/id_rsa
ssh-keyscan -t rsa github.com >> /root/.ssh/known_hosts
chmod 600 /root/.ssh/known_hosts
- uses: actions/checkout@v3

Expand Down

0 comments on commit 3f65d35

Please sign in to comment.