autoupdate docker image
This commit is contained in:
parent
a793882376
commit
303d66bc67
|
@ -4,8 +4,8 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'master'
|
- 'master'
|
||||||
release:
|
schedule:
|
||||||
types: [published]
|
- cron: '3 8 * * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docker:
|
docker:
|
||||||
|
@ -14,29 +14,6 @@ jobs:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2
|
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
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v1
|
||||||
|
@ -53,5 +30,4 @@ jobs:
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.imgtag.outputs.value }}
|
tags: ${{ secrets.DOCKERHUB_USERNAME }}/warp-proxy:latest
|
||||||
build-args: 'GIT_DESC=${{steps.tagger.outputs.tag}}'
|
|
||||||
|
|
Loading…
Reference in New Issue