Skip to content

build(deps): bump mavproxy from 1.8.66 to 1.8.67 #7

build(deps): bump mavproxy from 1.8.66 to 1.8.67

build(deps): bump mavproxy from 1.8.66 to 1.8.67 #7

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Docker Login
env:
DOCKER_LOGIN: ${{ secrets.DOCKER_USER }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASS }}
run: |
docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ${{ secrets.DOCKER_REPO }}:${{ github.sha }} --tag ${{ secrets.DOCKER_REPO }}:latest
- name: Docker Push (commitid)
run: docker push ${{ secrets.DOCKER_REPO }}:${{ github.sha }}
- name: Docker Push (latest)
run: docker push ${{ secrets.DOCKER_REPO }}:latest