change update url from s3 to github release #21
Workflow file for this run
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 the Neighbor Link Firmware | |
on: | |
push: | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
profile: | |
- "tplink_archer-c7-v5" | |
- "tplink_archer-c7-v2" | |
- "tplink_archer-a7-v5" | |
- "glinet_gl-mt300a" | |
- "tplink_archer-ax23-v1" | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up Build Environment | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y \ | |
curl build-essential libncurses-dev zlib1g-dev \ | |
gawk git gettext libssl-dev xsltproc rsync unzip \ | |
python3 python3-distutils jq | |
- name: Build the Firmware | |
if: github.event_name != 'release' | |
run: | | |
cd src | |
bash build.bash ${GITHUB_SHA::6} ${{ matrix.profile }} | |
- name: Upload Build Artifacts | |
uses: actions/upload-artifact@v4 | |
if: github.event_name != 'release' | |
with: | |
name: ${{ matrix.profile }}_${{ github.sha }} | |
path: src/build/* | |
- name: Build the Firmware (Release) | |
if: github.event_name == 'release' | |
run: | | |
cd src | |
bash build.bash ${{ github.event.release.tag_name }} ${{ matrix.profile }} | |
- name: Attach Artifacts to Release | |
uses: svenstaro/upload-release-action@v2 | |
if: github.event_name == 'release' | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: src/build/* | |
tag: ${{ github.ref }} | |
file_glob: true |