Skip to content

Fix session handling, token refresh, and dashboard route #36

Fix session handling, token refresh, and dashboard route

Fix session handling, token refresh, and dashboard route #36

Workflow file for this run

name: Build and Push Docker Image to Docker Hub
on: push
jobs:
push_to_registry:
name: push docker image to hub
runs-on: ubuntu-latest
steps:
- name: check repository
uses: actions/checkout@v4
with:
lfs: 'true'
- name: login to docker registry
uses: docker/login-action@v3
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_TOKEN}}
- name: build and push docker image to registry
uses: docker/build-push-action@v5
with:
context: Sources
push: true
tags: bvdcode/octockup:latest
file: Sources/Octockup.Server/Dockerfile