Skip to content

Add setup command to TunInterface #63

Add setup command to TunInterface

Add setup command to TunInterface #63

name: Build AppImage
on:
push:
branches: [main]
pull_request:
jobs:
appimage:
name: Build AppImage
runs-on: ubuntu-latest
container: docker
steps:
- uses: actions/checkout@v4
- name: Build AppImage
run: |
docker build -t appimage-builder . -f burrow-gtk/build-aux/Dockerfile
docker create --name temp appimage-builder
docker cp temp:/app/burrow-gtk/build-appimage/Burrow-x86_64.AppImage .
docker rm temp
- uses: actions/upload-artifact@v4
with:
name: AppImage
path: Burrow-x86_64.AppImage