Skip to content

Commit

Permalink
Fix condition, group otel updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tmeire committed Aug 26, 2024
1 parent acae23e commit cca6209
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ updates:
directory: "/"
schedule:
interval: "daily"
groups:
otel-dependencies:
patterns:
- "go.opentelemetry.io/*"
- package-ecosystem: "docker"
directory: "/"
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Detect version
run: |-
VERSION="development"
if [[ ${{ env.GITHUB_REF_TYPE }} == "tag" ]]; then
if [[ "${{ env.GITHUB_REF_TYPE }}" == "tag" ]]; then
VERSION=${{ env.GITHUB_REF_NAME }}
fi
echo "VERSION=$VERSION" >> "$GITHUB_ENV"
Expand Down

0 comments on commit cca6209

Please sign in to comment.