diff --git a/.github/workflows/viam-build.yaml b/.github/workflows/viam-build.yaml new file mode 100644 index 0000000..aef088c --- /dev/null +++ b/.github/workflows/viam-build.yaml @@ -0,0 +1,18 @@ +# see https://github.com/viamrobotics/build-action for help +on: + push: + tags: + - '[0-9]+.[0-9]+.[0-9]+' + +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 }} \ No newline at end of file