Switch to manjaro from ubuntu #110
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "test-install" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup ssh | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Install | |
run: | | |
docker run --rm \ | |
-v $SSH_AUTH_SOCK:/ssh-agent \ | |
-v ~/.ssh:/root/.ssh \ | |
-e SSH_AUTH_SOCK=/ssh-agent \ | |
-v ${{ github.workspace }}:/workspace \ | |
manjarolinux/base:latest \ | |
/bin/bash -c " | |
GREEN='\033[0;32'; NC='\033[om' && \ | |
echo -e '${GREEN}Install openssh and git${NC}' && \ | |
cat /root/.ssh/id_rsa && \ | |
pacman -Sy --noconfirm openssh git && \ | |
echo -e '${GREEN}Add ssh keys${NC}' && \ | |
ssh-add -l && \ | |
echo -e '${GREEN}Add /workspace to trusted repos${NC}' && \ | |
git config --global --add safe.directory /workspace && \ | |
echo -e '${GREEN}Start install${NC}' && \ | |
cd /workspace && \ | |
./install.sh | |
" |