Skip to content

Commit

Permalink
DSP-1017 Upgrade to Sipi v3.0.0-rc.9 (#1752)
Browse files Browse the repository at this point in the history
  • Loading branch information
subotic committed Nov 6, 2020
1 parent d4fc3fd commit c79bf1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Checkout source
uses: actions/checkout@v1
with:
fetch-depth: 50
fetch-depth: 150
- uses: joschi/setup-jdk@v2
with:
java-version: '11' # The OpenJDK version to make available on the path
Expand Down Expand Up @@ -315,9 +315,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

# publish on merge to main
# publish only on release
publish:
name: Publish (on merge to main)
name: Publish (on release only)
needs: [
api-unit-tests,
api-e2e-tests,
Expand All @@ -326,7 +326,7 @@ jobs:
docs-build-test
]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions third_party/versions.bzl
Expand Up @@ -8,10 +8,10 @@ METRICS_VERSION = "4.0.1"

# SIPI - digest takes precedence!
SIPI_REPOSITORY = "daschswiss/sipi"
SIPI_VERSION = "3.0.0-rc.8"
SIPI_VERSION = "3.0.0-rc.9"
SIPI_TAG = "v" + SIPI_VERSION
SIPI_IMAGE = SIPI_REPOSITORY + ":" + SIPI_VERSION
SIPI_IMAGE_DIGEST = "sha256:dce8f37fa9cf758955fb8a40b5341e55edb4ae356349af447e0622299c3f687a"
SIPI_IMAGE_DIGEST = "sha256:fdb962adb9a08bfcabac0e01b31979c6612e5b59afae34e56d8916b4ca57aa0d"

# Jena Fuseki - digest takes precedence!
FUSEKI_REPOSITORY = "daschswiss/apache-jena-fuseki"
Expand Down

0 comments on commit c79bf1b

Please sign in to comment.