Skip to content

Commit

Permalink
testing build
Browse files Browse the repository at this point in the history
  • Loading branch information
wehagy committed Apr 2, 2024
1 parent 86a2b21 commit fe8d345
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Action to build lxd images
---
name: build images

on:
# Allows manual workflow run (must in default branch to work)
workflow_dispatch:

jobs:
build-openwrt-images:
runs-on: ubuntu-22.04
container:
image: openwrt/imagebuilder:ath79-generic-main
#env:
# NODE_ENV: development
#ports:
# - 80
volumes:
- ${{ github.workspace }}:/bin
#options: --privileged

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: build
run: |
make image \
PROFILE="tplink_archer-c7-v4" \
PACKAGES="luci luci-ssl luci-theme-material luci-app-sqm netbird kmod-wireguard"
- name: Upload image artifacts
uses: actions/upload-artifact@v4
with:
name: openwrt-images
path: bin

0 comments on commit fe8d345

Please sign in to comment.