Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 1.11 KB

README.md

File metadata and controls

52 lines (41 loc) · 1.11 KB

setup-lxd

NB: this action is currently in alpha, breaking changes can occur at any time. Please pin a SHA or exact version in your CI.

A GitHub Action which installs and configures the LXD snap on a runner.

When run with no inputs:

uses: canonical/setup-lxd@main

this action will install or refresh the LXD snap using the latest/candidate channel.

You can specify a different group membership required to access LXD:

uses: canonical/setup-lxd@main
with:
  group: lxd

and then users of that group will have full control over LXD.

You can specify a snap channel with the channel input:

uses: canonical/setup-lxd@main
with:
  channel: 5.21/stable

and then this action will install/refresh LXD from the specified channel.

Example usage

name: "Install latest LXD"
on: push
jobs:
  job1:
    runs-on: ubuntu-latest
    steps:

    - name: Setup LXD
      uses: canonical/setup-lxd@[version]
      with:
        channel: latest/edge

    - name: Launch container
      run: |
        lxc launch ubuntu:24.04 u1

Maintainers