Add files via upload #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Release luci-theme-peditx | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential libncurses5-dev gawk git gettext unzip zlib1g-dev file python3 python3-distutils curl | |
- name: Setup OpenWrt SDK | |
run: | | |
wget https://downloads.openwrt.org/releases/23.05.0/targets/x86/64/openwrt-sdk-23.05.0-x86-64_gcc-12.3.0_musl.Linux-x86_64.tar.xz | |
mkdir sdk && tar -xJf openwrt-sdk-23.05.0-x86-64_gcc-12.3.0_musl.Linux-x86_64.tar.xz -C sdk --strip-components=1 | |
cd sdk | |
echo "src-git packages https://github.com/openwrt/packages.git" > feeds.conf.default | |
echo "src-git luci https://github.com/openwrt/luci.git" >> feeds.conf.default | |
./scripts/feeds update -a | |
./scripts/feeds install -a | |
- name: Add luci-theme-peditx package | |
run: | | |
cd sdk/package | |
git clone https://github.com/peditx/luci-theme-peditx | |
cd .. | |
echo "CONFIG_PACKAGE_luci-theme-peditx=m" >> .config | |
- name: Build luci-theme-peditx | |
run: | | |
cd sdk | |
make defconfig | |
make package/luci-theme-peditx/compile -j1 V=sc | |
- name: Save luci-theme-peditx package | |
run: | | |
cd sdk | |
mkdir -p artifacts | |
find bin/ -name "*.ipk" -exec cp {} artifacts/ \; | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: v1.0.4 | |
name: luci-theme-peditx release - ${{env.timestamp}} | |
body: latest release of luci-theme-peditx theme for OpenWrt. | |
files: sdk/artifacts/luci-theme-peditx_*.ipk | |
env: | |
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} | |
timestamp: ${{ github.run_id }} |