-
Notifications
You must be signed in to change notification settings - Fork 6
27 lines (25 loc) · 933 Bytes
/
deploy.yml
File metadata and controls
27 lines (25 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Deploy BlueOS Extension Image
on:
# Automatically run when a new commit is added to the repository
#push:
# Automatically run when someone makes a Pull Request to the repository
#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
with:
docker-username: ${{ secrets.DOCKER_USERNAME }}
docker-password: ${{ secrets.DOCKER_PASSWORD }}
github-token: ${{ secrets.GITHUB_TOKEN }}
image-name: ${{ vars.IMAGE_NAME || 'quickstart-test' }}
author: ${{ vars.MY_NAME }}
author-email: ${{ vars.MY_EMAIL }}
maintainer: ${{ vars.ORG_NAME }}
maintainer-email: ${{ vars.ORG_EMAIL }}