Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Use correct docker image tag after publishing (DEV-614) #2016

Merged
merged 9 commits into from Mar 8, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -86,6 +86,11 @@ jobs:
uses: coursier/cache-action@v6
- name: generate api-client-test-data
run: make client-test-data
- name: Upload the test output
irinaschubert marked this conversation as resolved.
Show resolved Hide resolved
uses: actions/upload-artifact@v3
with:
name: client-test-data-zip
path: client-test-data.zip
- name: Cleanup before cache
shell: bash
run: |
Expand Down Expand Up @@ -224,8 +229,10 @@ jobs:
pip install -r docs/requirements.txt
npm install --global typedoc
sudo apt-get install graphviz
- name: generate api-client-test-data
run: make client-test-data
- name: Download client-test-data
uses: actions/download-artifact@v3
with:
name: client-test-data-zip
- name: add api-client-test-data to release assets
uses: svenstaro/upload-release-action@v2
with:
Expand Down
Expand Up @@ -60,7 +60,7 @@ class OntologyV2R2RSpec extends R2RSpec {
// If true, the existing expected response files are overwritten with the HTTP GET responses from the server.
// If false, the responses from the server are compared to the contents fo the expected response files.
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
private val writeTestDataFiles = true
private val writeTestDataFiles = false

override lazy val rdfDataObjects = List(
RdfDataObject(
Expand Down