fix: install python3 on the Docker image #187
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: build & deploy | |
on: | |
push: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build and push to bridge | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./ | |
file: ./Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/bridge:${{ github.sha }} | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
environment: | |
name: production | |
steps: | |
- uses: actions/checkout@master | |
- name: Updates drive cluster network image | |
uses: steebchen/kubectl@v2.0.0 | |
with: # defaults to latest kubectl binary version | |
config: ${{ secrets.KUBE_CONFIG_DATA }} | |
command: set image --record deployment/bridge-api-dp bridge-api=${{ secrets.DOCKERHUB_USERNAME }}/bridge:${{ github.sha }} -n bridge-api-ns | |
- name: Verify deployment | |
uses: steebchen/kubectl@v2.0.0 | |
with: | |
config: ${{ secrets.KUBE_CONFIG_DATA }} | |
version: v1.20.2 # specify kubectl binary version explicitly | |
command: rollout status deployment/bridge-api-dp -n bridge-api-ns | |
- uses: actions/checkout@master | |
- name: Update photos cluster network image | |
uses: steebchen/kubectl@v2.0.0 | |
with: | |
config: ${{ secrets.KUBE_CONFIG_DATA_PHOTOS }} | |
version: v1.21.5 | |
command: set image --record deployment/bridge-api-dp bridge-api=${{ secrets.DOCKERHUB_USERNAME }}/bridge:${{ github.sha }} | |
- name: Verify deployment | |
uses: steebchen/kubectl@v2.0.0 | |
with: | |
config: ${{ secrets.KUBE_CONFIG_DATA_PHOTOS }} | |
version: v1.21.5 | |
command: rollout status deployment/bridge-api-dp |