Skip to content

Merge pull request #68 from timber-team/update_repo_location #1

Merge pull request #68 from timber-team/update_repo_location

Merge pull request #68 from timber-team/update_repo_location #1

Workflow file for this run

name: Build UI
on:
push:
branches:
- "main"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
# Builds docker images and pushes them to GHCR
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ secrets.USER }}
password: ${{ secrets.TOKEN }}
- name: Build and push
uses: docker/[email protected]
with:
context: ./ui
push: true
tags: ghcr.io/timber-team/timber-ui:latest