Skip to content

update SSDP to respond to generic URN #1

update SSDP to respond to generic URN

update SSDP to respond to generic URN #1

Workflow file for this run

name: Build
on: push
jobs:
build-upload:
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install build tools
run: |
sudo apt-get update
sudo apt-get -y install libusb-1.0-0 cmake srecord
pip install -U pyserial
- id: build
name: Build
run: |
fname=$(./scripts/build-firmware | tail -1)
echo "::set-output name=fname::$fname"
- uses: keithweaver/[email protected]
name: Copy build to AWS
with:
command: cp
source: build/${{ steps.build.outputs.fname }}
destination: s3://konnected-io/builds/
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws_region: us-east-2