We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17c2fce commit 1a55269Copy full SHA for 1a55269
.github/workflows/docker-build.yml
@@ -11,7 +11,7 @@ on:
11
jobs:
12
build:
13
runs-on: ubuntu-latest
14
-
+ if: contains(github.event.head_commit.message, 'dk-build')
15
steps:
16
- name: Checkout repository
17
uses: actions/checkout@v2
.github/workflows/release.yml
@@ -23,7 +23,7 @@ jobs:
23
set -e # Fail on first error
24
25
# 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")
+ latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)
27
echo "Latest tag: $latest_tag"
28
echo "latest_tag=$latest_tag" >> $GITHUB_ENV
29
0 commit comments