Skip to content

Update description

Update description #79

Workflow file for this run

name: Compile AdGuardHome LuCI App
on:
push:
branches:
- dev
tags:
- 'v*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Build LuCI Package
id: build
uses: stevenjoezhang/build-luci-app@v0
with:
package: luci-app-adguardhome
sdk-url: https://archive.openwrt.org/chaos_calmer/15.05.1/ar71xx/generic/OpenWrt-SDK-15.05.1-ar71xx-generic_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64.tar.bz2
snapsdk-url: https://downloads.openwrt.org/snapshots/targets/x86/64/openwrt-sdk-x86-64_gcc-14.3.0_musl.Linux-x86_64.tar.zst
- name: Create Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: |
./artifacts/*
name: Release v${{ steps.build.outputs.version }}
tag_name: ${{ github.ref_name }}