Skip to content

chore: removed gh-pages deployment entirely #4

chore: removed gh-pages deployment entirely

chore: removed gh-pages deployment entirely #4

Workflow file for this run

name: Create and publish a Docker image
on:
push:
branches:
- docker-runtime
env:
REGISTRY: ghcr.io
IMAGE_NAME: adorsys-gis/webank-userapp
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.WEBANK_USERAPP_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
build-args: |
"VITE_BACKEND_URL="https://localhost:8555""
"VITE_FRONTEND_URL="https://localhost:8555""
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest