docs(product): deprecate running_total
measure type (#6955)
#3287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Master | |
on: | |
push: | |
paths: | |
- '.github/workflows/push.yml' | |
- '.github/workflows/master.yml' | |
- 'packages/**' | |
- '.eslintrc.js' | |
- '.prettierrc' | |
- 'lerna.json' | |
- 'package.json' | |
- 'rollup.config.js' | |
- 'yarn.lock' | |
- 'docs-gen/**' | |
- 'docs/**' | |
branches: | |
- master | |
jobs: | |
latest-tag-sha: | |
runs-on: ubuntu-20.04 | |
outputs: | |
sha: ${{ steps.get-tag.outputs.sha }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- id: git-log | |
run: git log HEAD~30..HEAD | |
- id: get-tag-test | |
run: echo "$SHA $(git rev-list -n 1 $(git tag --contains $SHA))" | |
env: | |
SHA: ${{ github.sha }} | |
- id: get-tag | |
run: echo "::set-output name=sha::$(git rev-list -n 1 $(git tag --contains $SHA))" | |
env: | |
SHA: ${{ github.sha }} | |
- id: get-tag-out | |
run: echo "$OUT" | |
env: | |
OUT: ${{ steps.get-tag.outputs.sha }} | |
docker-image-dev: | |
name: Release :dev image | |
runs-on: ubuntu-20.04 | |
needs: latest-tag-sha | |
if: (needs['latest-tag-sha'].outputs.sha != github.sha) | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
version: v0.9.1 | |
- name: Push to Docker Hub | |
uses: docker/build-push-action@v3 | |
with: | |
context: ./ | |
file: ./packages/cubejs-docker/dev.Dockerfile | |
platforms: linux/amd64 | |
push: true | |
tags: cubejs/cube:dev | |
- name: Update repo description | |
uses: peter-evans/dockerhub-description@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
repository: cubejs/cube | |
readme-filepath: ./packages/cubejs-docker/README.md |