Skip to content

Release v0.6.2

Release v0.6.2 #6

name: update_dashboard
on:
push:
branches:
- 'master'
paths:
- 'dff/utils/docker/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build_and_publish_dashboard:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}/superset_df_dashboard
flavor: |
latest=auto
tags: |
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and upload image
uses: docker/build-push-action@v5
with:
context: dff/utils/docker
file: dff/utils/docker/dockerfile_stats
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}