From deefd0dd78577f8e8cbf154075060c84744410b0 Mon Sep 17 00:00:00 2001 From: Yury Sannikov Date: Wed, 13 Dec 2023 01:59:37 +0300 Subject: [PATCH] test workflow --- .github/workflows/build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..1b5a639 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build Package Manually +on: [workflow_dispatch] + +jobs: + build: + name: "${{ matrix.tag }} - ${{ matrix.build_env.pkgarch}} :: ${{ matrix.build_env.target}}/${{ matrix.build_env.subtarget}} build" + runs-on: ubuntu-latest + strategy: + matrix: + tag: ['v23.05.0'] + build_env: + - pkgarch: mipsel_24kc + target: ramips + subtarget: mt7621 + steps: + - uses: actions/checkout@v4 + with: + repository: openwrt/openwrt + ref: ${{ matrix.tag }} + fetch-depth: 0 + + - name: Validate checked out repository + run: | + ls -al + git branch -v +