From 4e2eea86f9009670188e5657b272eb7bbe71c2c8 Mon Sep 17 00:00:00 2001 From: Gijsdeman Date: Wed, 6 Nov 2024 21:55:21 +0100 Subject: [PATCH] fix(semantic-release): various fixes --- .github/workflows/semantic-release.yaml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/semantic-release.yaml b/.github/workflows/semantic-release.yaml index 0ef02a8..58facd3 100644 --- a/.github/workflows/semantic-release.yaml +++ b/.github/workflows/semantic-release.yaml @@ -1,14 +1,20 @@ name: Semantic release on: + push: + branches: + - main pull_request: branches: - main jobs: - build-and-lint: + semantic-release: uses: GEWIS/actions/.github/workflows/semantic-release.yml@v0.0.2 with: - projects: '["."]' - docker_registry: 'abc.docker-registry.gewis.nl' - docker_tag: 'nc/aurora/backoffice' + projects: "['.']" + docker_registry: "abc.docker-registry.gewis.nl" + docker_paths: "['nc/aurora/backoffice']" + secrets: + REGISTRY_USERNAME: ${{ secrets.USERNAME }} + REGISTRY_PASSWORD: ${{ secrets.PASSWORD }}