From f6f6a9fe8183f3c449c353b717b9ef85de03305c Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Sat, 28 May 2022 23:29:05 +0800 Subject: [PATCH] :octocat: Add workflow for releasing Docker Image --- .github/workflows/dockerimage.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/dockerimage.yml diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml new file mode 100644 index 000000000..f2927bf8a --- /dev/null +++ b/.github/workflows/dockerimage.yml @@ -0,0 +1,18 @@ +name: Release Docker Image +on: + push: + branches: + - master +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + #ref: '70e4c2c0cb2f1c2f3d1c76de99a3e7593e3d7cae' + submodules: true + - name: Build the Docker image + run: | + docker login --username=${{ secrets.DOCKER_HUB_USER }} --password=${{ secrets.DOCKER_HUB_PWD }} + docker build -t b3log/siyuan:latest -t b3log/siyuan:v2.0.13 . + docker push b3log/siyuan -a