Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
tagName: ${{ github.ref_name }}
releaseName: 'Teebot Flow v__VERSION__'
releaseBody: 'Release v__VERSION__ of Teebot Flow.'
releaseDraft: true
releaseDraft: false
prerelease: false
args: ${{ matrix.args }}

Expand Down Expand Up @@ -197,12 +197,14 @@ jobs:
- name: Install system dependencies (Linux)
uses: ./.github/actions/install-dependencies

- name: Install snapcraft and LXD
run: |
sudo snap install snapcraft --classic
sudo snap install lxd
sudo lxd init --auto
sudo usermod -aG lxd "$USER"
- name: Install snapcraft
run: sudo snap install snapcraft --classic

- name: Setup LXD
uses: canonical/setup-lxd@v1
Comment thread
coderabbitai[bot] marked this conversation as resolved.

- name: Grant user membership in lxd group
run: sudo usermod -aG lxd "$USER"

- name: Build Debian Package via Tauri
run: pnpm tauri build --bundles deb
Expand Down
Loading