Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
text-generation-inference
Commits
fb98ab27
"src/vscode:/vscode.git/clone" did not exist on "16bb5058b91f4aa44c4470fed70fd0e556157cf0"
Unverified
Commit
fb98ab27
authored
Jun 28, 2024
by
Nicolas Patry
Committed by
GitHub
Jun 28, 2024
Browse files
Fixing the CI to also run in release when it's a tag ? (#2138)
parent
74b0231b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
.github/workflows/build.yaml
.github/workflows/build.yaml
+1
-1
No files found.
.github/workflows/build.yaml
View file @
fb98ab27
...
...
@@ -157,7 +157,7 @@ jobs:
runs-on
:
[
"
self-hosted"
,
"
${{
needs.build-and-push.outputs.runs_on
}}"
,
"
multi-gpu"
]
if
:
needs.build-and-push.outputs.runs_on != 'ubuntu-latest'
env
:
PYTEST_FLAGS
:
${{ github.ref == 'refs/heads/main' && '--release' || '' }}
PYTEST_FLAGS
:
${{
(startsWith(github.ref, 'refs/tags/') ||
github.ref == 'refs/heads/main'
)
&& '--release' || '' }}
steps
:
-
name
:
Checkout repository
uses
:
actions/checkout@v4
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment