Skip to content

fix: 🩹 Fixed redirect to login page when using basePath env #77

fix: 🩹 Fixed redirect to login page when using basePath env

fix: 🩹 Fixed redirect to login page when using basePath env #77

Workflow file for this run

name: Snapshot
on:
workflow_dispatch:
push:
pull_request:
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- name: Extract branch name
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" >> $GITHUB_ENV
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker images
uses: docker/build-push-action@v3.2.0
with:
push: true
tags: tiagoboeing/bull-board:${{ env.BRANCH_NAME }}-SNAPSHOT
target: production