Skip to content

Commit

Permalink
.github: Add workflow for extension deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaoMario109 committed Dec 10, 2024
1 parent e9a4548 commit 07d861f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy BlueOS Extension Image

on:
push:
# 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/[email protected]
with:
docker-username: ${{ secrets.DOCKER_USERNAME }}
docker-password: ${{ secrets.DOCKER_PASSWORD }}
github-token: ${{ secrets.GITHUB_TOKEN }}
image-name: 'cellphone-modem-manager'

0 comments on commit 07d861f

Please sign in to comment.