mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-27 10:46:26 +00:00
27 lines
673 B
YAML
27 lines
673 B
YAML
name: "Release: Previous Docker"
|
|
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: "Previous Docker image tag"
|
|
required: true
|
|
|
|
jobs:
|
|
login:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Login to Docker Hub
|
|
uses: docker/login-action@v2.1.0
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
-
|
|
name: Docker retag and push
|
|
run: |
|
|
docker pull nocodb/nocodb:${{ github.event.inputs.tag }}
|
|
docker image tag nocodb/nocodb:${{ github.event.inputs.tag }} nocodb/nocodb:latest
|
|
docker push nocodb/nocodb:latest
|