Skip to content

Commit

Permalink
Update version to v1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Neilpang committed Oct 6, 2024
1 parent 64e7143 commit 6ec5c25
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,34 @@ It uses [the DragonflyBSD 6.4.0](conf/default.release.conf) by default, you can
All the supported releases are here: DragonflyBSD 6.4.0, test.releases [See all here](conf)
Support custom shell:
```
...
steps:
- uses: actions/checkout@v4
- name: Test
id: vm
uses: vmactions/dragonflybsd-vm@v1
- name: Custom shell step 1
shell: dragonflybsd {0}
run: |
cd $GITHUB_WORKSPACE;
pwd
echo "this is step 1, running inside the VM"
- name: Custom shell step 2
shell: dragonflybsd {0}
run: |
cd $GITHUB_WORKSPACE;
pwd
echo "this is step 2, running inside the VM"
...
```
# Under the hood
We use Qemu and Libvirt to run the DragonflyBSD VM.
Expand Down

0 comments on commit 6ec5c25

Please sign in to comment.