Skip to content

Commit bc6ebd8

Browse files
joaomariolagopatrickelectric
authored andcommitted
.github: Add workflow for extension deploy
1 parent e9a4548 commit bc6ebd8

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/deploy.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Deploy BlueOS Extension Image
2+
3+
on:
4+
push:
5+
# Run manually
6+
workflow_dispatch:
7+
# NOTE: caches may be removed if not run weekly
8+
# -> may be worth scheduling for every 6 days
9+
10+
jobs:
11+
deploy-docker-image:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Deploy BlueOS Extension
15+
uses: BlueOS-community/[email protected]
16+
with:
17+
docker-username: ${{ secrets.DOCKER_USERNAME }}
18+
docker-password: ${{ secrets.DOCKER_PASSWORD }}
19+
github-token: ${{ secrets.GITHUB_TOKEN }}
20+
image-name: 'cellphone-modem-manager'

0 commit comments

Comments
 (0)