Skip to content

Commit 632d825

Browse files
committed
test 2
1 parent 264db85 commit 632d825

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/dotbot.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,16 @@ jobs:
1818
- name: Checkout repository
1919
uses: actions/checkout@v4
2020

21-
- name: Set up Python
22-
uses: actions/setup-python@v5
23-
with:
24-
python-version: '3.12'
21+
# preparing environment for docker build
22+
- name: Set up QEMU
23+
uses: docker/setup-qemu-action@v2
24+
- name: Set up Docker Buildx
25+
uses: docker/setup-buildx-action@v2
2526

26-
- name: Install Dotbot
27+
- name: Build base Docker image
2728
run: |
28-
python3 -m pip install pyyaml dotbot
29+
docker build -t pirafrank/dotbot:latest -f dotbot/dotbot.dockerfile dotbot/
2930
30-
- name: Test Dotbot configuration
31+
- name: Build dotfiles Docker image
3132
run: |
32-
dotbot -c install.conf.yaml -d $(pwd)
33+
docker build -t dotfiles-test -f dotbot/Dockerfile .

0 commit comments

Comments
 (0)