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 ff9e44c commit 4bcd964Copy full SHA for 4bcd964
.github/workflows/bump-version-and-create-release.yaml
@@ -97,3 +97,19 @@ jobs:
97
tag: ${{ needs.compute-version.outputs.new_tag }}
98
body: ${{ github.event.pull_request.body }}
99
100
+
101
+ build-and-run-release-tests:
102
+ needs: create-release
103
+ runs-on: ubuntu-latest
104
+ steps:
105
+ - name: Build release test Docker image
106
+ uses: docker/build-push-action@v6
107
+ with:
108
+ push: false
109
+ tags: |
110
+ ghcr.io/kit-mrt/util_caching_release_tests
111
+ target: release_test
112
113
+ - name: Run unit tests with/against released version
114
+ run: |
115
+ docker run --rm ghcr.io/kit-mrt/util_caching_release_tests
.github/workflows/run-release-tests.yaml
0 commit comments