diff --git a/.github/workflows/Bap-spsh-k6-loadtest.yml b/.github/workflows/Bap-spsh-k6-loadtest.yml deleted file mode 100644 index f03cb9e..0000000 --- a/.github/workflows/Bap-spsh-k6-loadtest.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Build and push spsh-k6-loadtest Images - -on: - push: - tags: - - 'spsh-k6-loadtest-[0-9]+.[0-9]+.[0-9]+' -jobs: - pre_build: - runs-on: ubuntu-latest - outputs: - tagName: ${{ steps.tagName.outputs.tag }} - versionName: ${{ steps.versionName.outputs.tag }} - steps: - - name: Filter Tag name - uses: olegtarasov/get-tag@v2.1 - id: tagName - with: - tagRegex: "(.+?(?=-[0-9]))" - tagRegexGroup: 1 - - - name: Filter Version name - uses: olegtarasov/get-tag@v2.1 - id: versionName - with: - tagRegex: "${{ steps.tagName.outputs.tag }}-(.*)" - tagRegexGroup: 1 - - build_and_push: - needs: pre_build - uses: hpi-schul-cloud/infra-tools/.github/workflows/build-and-push.yaml@master - with: - registry: ghcr.io - image: dbildungsplattform/${{ needs.pre_build.outputs.tagName }} - tag: ${{ needs.pre_build.outputs.versionName }} - context: ./infrastructure/${{ needs.pre_build.outputs.tagName }}/ -