canodrom SSID shorter than 32 chars #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build network profiles | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build packages | |
uses: openwrt/gh-action-sdk@v5 | |
env: | |
ARCH: "x86_64" | |
EXTRA_FEEDS: "src-git|libremesh|https://github.com/libremesh/lime-packages.git" | |
FEEDNAME: "profiles" | |
IGNORE_ERRORS: "n m y" | |
KEY_BUILD: "${{ secrets.KEY_BUILD }}" | |
- name: Upload packages to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
external_repository: libremesh/lime-feed | |
publish_dir: bin/packages/x86_64/profiles/ | |
destination_dir: profiles |