From 303d66bc678bed6e31f76691aacf2899606a9616 Mon Sep 17 00:00:00 2001 From: Vladislav Yarmak Date: Mon, 21 Jun 2021 17:24:03 +0300 Subject: [PATCH] autoupdate docker image --- .github/workflows/docker-ci.yml | 30 +++--------------------------- 1 file changed, 3 insertions(+), 27 deletions(-) diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml index 62bfa30..70e675f 100644 --- a/.github/workflows/docker-ci.yml +++ b/.github/workflows/docker-ci.yml @@ -4,8 +4,8 @@ on: push: branches: - 'master' - release: - types: [published] + schedule: + - cron: '3 8 * * *' jobs: docker: @@ -14,29 +14,6 @@ jobs: - name: Checkout uses: actions/checkout@v2 - with: - fetch-depth: 0 - - - name: Find Git Tag - id: tagger - uses: jimschubert/query-tag-action@v2 - with: - include: 'v*' - exclude: '*-rc*' - commit-ish: 'HEAD' - skip-unshallow: 'true' - abbrev: 7 - - - name: Determine image tag type - uses: haya14busa/action-cond@v1 - id: imgtag - with: - cond: ${{ github.event_name == 'release' }} - if_true: ${{ secrets.DOCKERHUB_USERNAME }}/warp-proxy:${{ github.event.release.tag_name }},${{ secrets.DOCKERHUB_USERNAME }}/warp-proxy:latest - if_false: ${{ secrets.DOCKERHUB_USERNAME }}/warp-proxy:latest - - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 @@ -53,5 +30,4 @@ jobs: with: context: . push: true - tags: ${{ steps.imgtag.outputs.value }} - build-args: 'GIT_DESC=${{steps.tagger.outputs.tag}}' + tags: ${{ secrets.DOCKERHUB_USERNAME }}/warp-proxy:latest