Skip to content

Commit

Permalink
trigger cloud builds on push (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
abe-winter authored Dec 19, 2023
1 parent c8b23c5 commit 64dd19e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
workflow_dispatch:
inputs:
version:
type: string
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: viamrobotics/build-action@main
with:
version: ${{ inputs.version }}
key-id: ${{ secrets.viam_key_id }}
key-value: ${{ secrets.viam_key_value }}

0 comments on commit 64dd19e

Please sign in to comment.