We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9a4548 commit bc6ebd8Copy full SHA for bc6ebd8
1 file changed
.github/workflows/deploy.yml
@@ -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/Deploy-BlueOS-Extension@v1.0.1
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