mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-24 19:05:17 +00:00
19 lines
459 B
YAML
19 lines
459 B
YAML
name: "Publish : Docker Readme"
|
|
|
|
on: workflow_dispatch
|
|
# push:
|
|
# branches: [ master ]
|
|
|
|
jobs:
|
|
docker-description:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Docker Hub Description
|
|
uses: peter-evans/dockerhub-description@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
repository: nocodb/nocodb
|