Skip to content

fix(worksheets): improve permissions handling #138

fix(worksheets): improve permissions handling

fix(worksheets): improve permissions handling #138

Workflow file for this run

name: Build and share Docker Image to Docker Hub
on:
push:
branches:
- dev
jobs:
build-and-share:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPO_NAME }}:dev-latest
build-args: |
NEXT_PUBLIC_SERVER_URL=${{ vars.NEXT_PUBLIC_SERVER_URL }}
NEXT_PUBLIC_ENV_NAME=DEV