32 lines
708 B
YAML
32 lines
708 B
YAML
name: push_to_prod
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deploy_to_staging:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.8'
|
|
|
|
- name: Check out dev repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: dev
|
|
persist-credentials: false
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2.2.0
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
|
|
|
|
- name: Publish Addon Image
|
|
uses: home-assistant/builder@master
|
|
with:
|
|
args: |
|
|
--all \
|
|
--target dev/hassio-google-drive-backup
|