Skip to content

Commit 1a55269

Browse files
committed
Fix multiple re-renders of metrics page / update release worker - Update docker build workflow
1 parent 17c2fce commit 1a55269

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
14-
14+
if: contains(github.event.head_commit.message, 'dk-build')
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@v2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
set -e # Fail on first error
2424
2525
# Extract the latest tag, or default to v1.0.0 if no tags exist
26-
latest_tag=$(git describe --tags `git rev-list --tags --max-count=1` || echo "v1.0.0")
26+
latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)
2727
echo "Latest tag: $latest_tag"
2828
echo "latest_tag=$latest_tag" >> $GITHUB_ENV
2929

0 commit comments

Comments
 (0)