fix api bug and missing dependency #4
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
# see https://github.com/viamrobotics/build-action for help | |
on: | |
push: | |
tags: | |
- "*" # the build-action will trigger on all tags including RC versions | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: viamrobotics/build-action@v1 | |
with: | |
# note: you can replace this line with 'version: ""' if | |
# you want to test the build process without deploying | |
version: ${{ github.ref_name }} | |
ref: ${{ github.sha }} | |
key-id: ${{ secrets.viam_key_id }} | |
key-value: ${{ secrets.viam_key_value }} |