diff --git a/.github/workflows/artifacts-release-nightly.yaml b/.github/workflows/artifacts-release-nightly.yaml index d872e93..78f5fd3 100644 --- a/.github/workflows/artifacts-release-nightly.yaml +++ b/.github/workflows/artifacts-release-nightly.yaml @@ -26,7 +26,7 @@ jobs: env: PASSWORD: ${{ secrets.MASTER_PASSWORD }} TARGET: x86/64 - VERSION: '22.03.4' + VERSION: '22.03.5' REPOSITORY: https://downloads.openwrt.org GCC_VERSION: 11.2.0_musl run: | diff --git a/.github/workflows/openwrt-snapshot-daily.yaml b/.github/workflows/openwrt-snapshot-daily.yaml deleted file mode 100644 index 678dc6e..0000000 --- a/.github/workflows/openwrt-snapshot-daily.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: Snapshot Daily -on: - push: - schedule: - - cron: '30 9 * * *' # Daily build. -jobs: - build-openwrt-snapshot: - name: OpenWRT snapshot daily build - if: ${{ !contains(github.event.head_commit.message, '[no build]') }} - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Build openwrt image. - env: - PASSWORD: ${{ secrets.MASTER_PASSWORD }} - TARGET: x86/64 - VERSION: 'snapshots' - REPOSITORY: https://downloads.openwrt.org - GCC_VERSION: 12.3.0_musl - run: | - pip3 install --user --upgrade cryptography emoji pycountry pytz pyyaml requests - bash openwrt-builder/build.sh - cp -r /tmp/openwrt/openwrt-imagebuilder-${TARGET/\//-}.Linux-${TARGET/\//_}/bin/targets/$TARGET artifacts - for f in $(find artifacts -iname '*.gz'); do - gpg -c --batch --yes --passphrase=${PASSWORD} $f - rm $f - done - - name: Upload built artifacts. - uses: actions/upload-artifact@v3 - with: - name: openwrt-snapshot-images - path: artifacts diff --git a/.github/workflows/openwrt-stable-monthly.yaml b/.github/workflows/openwrt-stable-monthly.yaml deleted file mode 100644 index 236dc77..0000000 --- a/.github/workflows/openwrt-stable-monthly.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: Stable Monthly -on: - push: - schedule: - - cron: '30 9 1 * *' # Monthly build. -jobs: - build-openwrt-stable: - name: OpenWRT stable monthly build - if: ${{ !contains(github.event.head_commit.message, '[no build]') }} - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: setup-dependencies - run: | - pip3 install --user --upgrade cryptography emoji pycountry pytz pyyaml requests - - name: build-openwrt-22-03 - env: - PASSWORD: ${{ secrets.MASTER_PASSWORD }} - TARGET: x86/64 - VERSION: '22.03.4' - REPOSITORY: https://downloads.openwrt.org - GCC_VERSION: 11.2.0_musl - run: | - echo "VERSION=$VERSION" >> $GITHUB_ENV - bash openwrt-builder/build.sh - cp -r /tmp/openwrt/openwrt-imagebuilder-$VERSION-${TARGET/\//-}.Linux-${TARGET/\//_}/bin/targets/$TARGET artifacts-$VERSION - for f in $(find artifacts-$VERSION -iname '*.gz'); do - gpg -c --batch --yes --passphrase=${PASSWORD} $f - rm $f - done - - name: upload-openwrt-22-03-artifacts - uses: actions/upload-artifact@v3 - with: - name: openwrt-stable-${{ env.VERSION }} - path: artifacts-${{ env.VERSION }} diff --git a/openwrt-builder/packages/22.03.4.txt b/openwrt-builder/packages/22.03.5.txt similarity index 100% rename from openwrt-builder/packages/22.03.4.txt rename to openwrt-builder/packages/22.03.5.txt