Skip to content

its navigating to the checkout page with the info on it, but not usin… #5

its navigating to the checkout page with the info on it, but not usin…

its navigating to the checkout page with the info on it, but not usin… #5

Workflow file for this run

name: deploy-bid
on:
workflow_dispatch:
push:
branches: [ "master" ]
paths:
- 'src/BiddingService/**'
env:
REGISTRY_IMAGE: amg31/bid-svc
DOCKERFILE: src/BiddingService/Dockerfile
DEPLOYMENT_NAME: bid-svc
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build and push the Docker image
uses: docker/build-push-action@v3
with:
context: "{{defaultContext}}"
file: ${{env.DOCKERFILE}}
push: true
tags: ${{ env.REGISTRY_IMAGE }}:latest
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Save DigitalOcean kubeconfig
run: doctl kubernetes cluster kubeconfig save auctionnext
- name: Restart Kubernetes deployment
run: kubectl rollout restart deployment ${{ env.DEPLOYMENT_NAME }}