Add a build step to create a unix timestamp. Use that timestamp to create a latest_ci tag which can be used by the rennovate bot
This commit is contained in:
5
.github/workflows/publish.yaml
vendored
5
.github/workflows/publish.yaml
vendored
@@ -18,6 +18,10 @@ jobs:
|
|||||||
contents: write # required to upload release asset
|
contents: write # required to upload release asset
|
||||||
packages: write
|
packages: write
|
||||||
steps:
|
steps:
|
||||||
|
- name: Get current date
|
||||||
|
id: current_date
|
||||||
|
run: echo "::set-output name=unix_time::$(date +'%s')"
|
||||||
|
|
||||||
- name: Check it out
|
- name: Check it out
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
@@ -65,6 +69,7 @@ jobs:
|
|||||||
type=sha,format=short,event=branch
|
type=sha,format=short,event=branch
|
||||||
type=semver,pattern={{version}}
|
type=semver,pattern={{version}}
|
||||||
type=raw,value=latest-ci,enable={{is_default_branch}}
|
type=raw,value=latest-ci,enable={{is_default_branch}}
|
||||||
|
type=raw,value=latest-ci_{{ steps.current_date.outputs.unix_time }},enable={{is_default_branch}}
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@dc7b9719a96d48369863986a06765841d7ea23f6
|
uses: docker/setup-buildx-action@dc7b9719a96d48369863986a06765841d7ea23f6
|
||||||
|
|||||||
Reference in New Issue
Block a user