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 3f22d33 commit 483512eCopy full SHA for 483512e
.github/workflows/build-docker.yml
@@ -51,20 +51,12 @@ jobs:
51
- name: Determine Tag Name Based on Branch
52
id: determine_tag
53
run: |
54
- if [[ "${{ github.ref_name }}" == "main" ]]; then
+ if [[ "${{ github.ref_name }}" == "byoc-researcher" ]]; then
55
echo "tagname=latest" >> $GITHUB_OUTPUT
56
- elif [[ "${{ github.ref_name }}" == "dev" ]]; then
57
- echo "tagname=dev" >> $GITHUB_OUTPUT
58
- elif [[ "${{ github.ref_name }}" == "demo" ]]; then
59
- echo "tagname=demo" >> $GITHUB_OUTPUT
60
- elif [[ "${{ github.ref_name }}" == "dependabotchanges" ]]; then
61
- echo "tagname=dependabotchanges" >> $GITHUB_OUTPUT
62
else
63
echo "tagname=default" >> $GITHUB_OUTPUT
64
-
65
fi
66
67
68
- name: Build Docker Image and optionally push
69
uses: docker/build-push-action@v6
70
with:
0 commit comments