ci: build openwrt-18.06 i18n

This commit is contained in:
sbwml 2022-08-17 23:22:54 +08:00
parent 1f058707c7
commit a153d96a3f

55
.github/workflows/i18n-luci-18.06.yml vendored Normal file
View File

@ -0,0 +1,55 @@
name: i18n-luci-18.06
on:
release:
types:
- published
jobs:
build:
name: Build openwrt-18.06 luci-i18n package
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arch:
- x86_64
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get v2ray-geodata
run: |
git clone https://github.com/sbwml/v2ray-geodata
- name: Building packages
uses: immortalwrt/gh-action-sdk@v4
env:
ARCH: ${{ matrix.arch }}-openwrt-18.06-k5.4
FEEDNAME: packages_ci
PACKAGES: luci-app-mosdns
NO_REFRESH_CHECK: true
- name: Move created packages to project dir
run: |
cp bin/packages/${{ matrix.arch }}/packages_ci/*i18n*zh-cn*.ipk . || true
for i in `ls`; do mv -f $i `echo "openwrt-18.06_"$i`; done
- name: Store packages
uses: actions/upload-artifact@v2
if: github.event_name != 'release'
with:
name: ${{ matrix.arch}}-${{ github.sha}}-packages
path: "*.ipk"
- name: Upload packages
uses: svenstaro/upload-release-action@v2
if: github.event_name == 'release'
with:
repo_token: ${{ secrets.workflow_token }}
file: "*.ipk"
tag: ${{ github.ref }}
overwrite: true
file_glob: true