Deploy BlueOS Extension Image #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy BlueOS Extension Image | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
deploy-docker-image: | |
# set the agent to run on | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
pip install gitpython | |
- name: Populate docs | |
run: | | |
./populate_docs.py | |
- 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 should not start with blueos- (see image-prefix) | |
image-name: 'blueos-docs' |