1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-23 23:33:12 +00:00
dotfiles/.github/workflows/setup.yml

34 lines
885 B
YAML
Raw Normal View History

2024-10-25 16:18:45 +00:00
name: Test dotfiles run
on:
workflow_dispatch: # allow manual trigger
push:
branches:
- main
jobs:
setup: # try setting up user with setup script
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- name: Install git on container and add user
run: |
pacman -Sy --noconfirm git opendoas
pacman-key --init
useradd -m glados -G wheel
echo permit nopass :wheel > /etc/doas.conf
- name: Checkout repo
uses: actions/checkout@v4
- name: Run setup
run: |
cp -r /__w/dotfiles/dotfiles /home/glados/.dotfiles
su glados -c /home/glados/.dotfiles/bin/setup
mkdwarfs -i /home/glados -o /home.dwarfs
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: home.dwarfs
path: /home.dwarfs