Skip to content

Commit

Permalink
add deployment action in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Williangalvani committed Jan 30, 2024
1 parent 505241c commit 7f9cd16
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Deploy BlueOS Extension Image

on:
push:
pull_request:
# Run manually
workflow_dispatch:
# NOTE: caches may be removed if not run weekly
# -> may be worth scheduling for every 6 days

jobs:
deploy-docker-image:
runs-on: ubuntu-latest
steps:
- name: Deploy BlueOS Extension
uses: BlueOS-community/Deploy-BlueOS-Extension@v1.0.1
with:
docker-username: ${{ secrets.DOCKER_USERNAME }}
docker-password: ${{ secrets.DOCKER_PASSWORD }}
github-token: ${{ secrets.GITHUB_TOKEN }}
image-name: 'water-linked-dvl'

0 comments on commit 7f9cd16

Please sign in to comment.