Skip to content

reformat files

reformat files #18

Workflow file for this run

name: IPK Release
on:
push:
branches:
- main
jobs:
build:
name: ${{ matrix.arch }}-${{ matrix.sdk }}
runs-on: ubuntu-latest
strategy:
matrix:
arch:
- x86_64
sdk:
- "22.03"
steps:
- uses: actions/checkout@v4
- name: Move src to openwrt-support
run: mv openwrt-support ../ && mkdir ../openwrt-support/rtp2httpd/src && mv ./* ../openwrt-support/rtp2httpd/src && mv ../openwrt-support ./
- name: Build
uses: openwrt/gh-action-sdk@v7
env:
ARCH: ${{ matrix.arch }}-${{ matrix.sdk }}-SNAPSHOT
FEED_DIR: ${{ github.workspace }}/openwrt-support
NO_DEFAULT_FEEDS: true
NO_SHFMT_CHECK: true
PACKAGES: rtp2httpd
- name: Store packages
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.arch }}-${{ matrix.sdk }}-packages
path: bin/packages/${{ matrix.arch }}/action/*.ipk