Skip to content

make sure we get the current charge session ID #9

make sure we get the current charge session ID

make sure we get the current charge session ID #9

Workflow file for this run

name: Build and Push Docker Image
on:
push:
paths-ignore:
- "README.md"
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
environment: prod
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Build Docker Image
working-directory: ./
run: |
docker build -t jvik/elaway-gateway-api:latest .
- name: Log in to Docker Hub
run: docker login -u jvik -p ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push Docker Image
run: docker push jvik/elaway-gateway-api:latest