From 165e9e27117089ad68aaa8a8d928774a50dc99fa Mon Sep 17 00:00:00 2001 From: Bart Geesink Date: Thu, 23 May 2024 14:10:52 +0200 Subject: [PATCH] Release steps are also central --- .github/workflows/release.yml | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 953a633..aaa52a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,28 +4,9 @@ on: push: tags: - "*.*.*" - workflow_dispatch: jobs: - prepare: - runs-on: ubuntu-latest - outputs: - tag: ${{ steps.set_tag.outputs.tag }} - steps: - - name: Extract tag from GITHUB_REF - id: set_tag - run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT - - build-release: - needs: prepare - uses: openconext/openconext-githubactions/.github/workflows/build-release.yml@main + build-release-and-push-container: + uses: openconext/openconext-githubactions/.github/workflows/symfony-release.yml@main with: component_name: "Stepup-gssp-example" - tag: ${{ needs.prepare.outputs.tag }} - - build-and-push-container: - needs: [ build-release, prepare ] - uses: openconext/openconext-githubactions/.github/workflows/build-push-docker-image.yml@main - with: - component_name: "Stepup-gssp-example" - tag: ${{ needs.prepare.outputs.tag }}