mirror of
https://github.com/apache/superset.git
synced 2026-04-14 13:44:46 +00:00
ci(docker): fix release published event checkout tag-sha (#12096)
* release: push 0.38.0 image and fix * fix * remove manual action
This commit is contained in:
committed by
GitHub
parent
2210015aab
commit
f642aea683
20
.github/workflows/docker-release.yml
vendored
Normal file
20
.github/workflows/docker-release.yml
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
name: Docker
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
jobs:
|
||||
build:
|
||||
name: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: ${{ github.ref }}
|
||||
- shell: bash
|
||||
env:
|
||||
DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }}
|
||||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
run: |
|
||||
.github/workflows/docker_build_push.sh
|
||||
Reference in New Issue
Block a user