Skip to content

Commit

Permalink
Update version to v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Neilpang committed Oct 6, 2024
1 parent 850da9b commit cbdae6d
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 @@ -200,6 +200,34 @@ It uses [the FreeBSD 14.1](conf/default.release.conf) by default, you can use `r
All the supported releases are here: FreeBSD 12.4, 13.2, 13.3, 13.4, 14.0, 14.1, test.releases [See all here](conf)
Support custom shell:
```
...
steps:
- uses: actions/checkout@v4
- name: Test
id: vm
uses: vmactions/freebsd-vm@v1
- name: Custom shell step 1
shell: freebsd {0}
run: |
cd $GITHUB_WORKSPACE;
pwd
echo "this is step 1, running inside the VM"
- name: Custom shell step 2
shell: freebsd {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 FreeBSD VM.
Expand Down

0 comments on commit cbdae6d

Please sign in to comment.