Skip to content

Commit

Permalink
Fixed package build actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ganehag committed Jun 22, 2023
1 parent a61902e commit 15878ba
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/teltonika_rut9_r.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
mkdir -p `pwd`/build/etc/init.d
mkdir -p `pwd`/build/etc/config
cp -a openwrt/CONTROL `pwd`/build
cp openwrt/omg.init `pwd`/build/etc/init.d/omg
cp openwrt/omg.config `pwd`/build/etc/config/omg
chmod +x `pwd`/build/etc/init.d/omg
cp openwrt/openmmg.init `pwd`/build/etc/init.d/openmmg
cp openwrt/openmmg.config `pwd`/build/etc/config/openmmg
chmod +x `pwd`/build/etc/init.d/openmmg
echo "Architecture: mips_24kc" >> build/CONTROL/control
- name: Build project with Teltonika SDK Toolchain (RUT9_R 900, 905, 950, 955)
Expand All @@ -37,7 +37,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: omg_*.ipk
file: openmmg_*.ipk
tag: ${{ github.ref }}
overwrite: true
file_glob: true
8 changes: 4 additions & 4 deletions .github/workflows/teltonika_rut9m_r.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
mkdir -p `pwd`/build/etc/init.d
mkdir -p `pwd`/build/etc/config
cp -a openwrt/CONTROL `pwd`/build
cp openwrt/omg.init `pwd`/build/etc/init.d/omg
cp openwrt/omg.config `pwd`/build/etc/config/omg
chmod +x `pwd`/build/etc/init.d/omg
cp openwrt/openmmg.init `pwd`/build/etc/init.d/openmmg
cp openwrt/openmmg.config `pwd`/build/etc/config/openmmg
chmod +x `pwd`/build/etc/init.d/openmmg
echo "Architecture: mipsel_24kc" >> build/CONTROL/control
- name: Build project with Teltonika SDK Toolchain (RUT9M_R 951, 956)
Expand All @@ -37,7 +37,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: omg_*.ipk
file: openmmg_*.ipk
tag: ${{ github.ref }}
overwrite: true
file_glob: true
8 changes: 4 additions & 4 deletions .github/workflows/teltonika_trb1_r.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
mkdir -p `pwd`/build/etc/init.d
mkdir -p `pwd`/build/etc/config
cp -a openwrt/CONTROL `pwd`/build
cp openwrt/omg.init `pwd`/build/etc/init.d/omg
cp openwrt/omg.config `pwd`/build/etc/config/omg
chmod +x `pwd`/build/etc/init.d/omg
cp openwrt/openmmg.init `pwd`/build/etc/init.d/openmmg
cp openwrt/openmmg.config `pwd`/build/etc/config/openmmg
chmod +x `pwd`/build/etc/init.d/openmmg
echo "Architecture: arm_cortex-a7_neon-vfpv4" >> build/CONTROL/control
- name: Build project with Teltonika SDK Toolchain (TRB140, TRB141, TRB142, TRB143, TRB145)
Expand All @@ -37,7 +37,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: omg_*.ipk
file: openmmg_*.ipk
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit 15878ba

Please sign in to comment.