From 2f910c54176346f944dabe29bee5a47018fc1d8e Mon Sep 17 00:00:00 2001 From: Pedro Tanaka Date: Sat, 22 Feb 2025 14:46:14 +0100 Subject: [PATCH] fixing release Signed-off-by: Pedro Tanaka --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5874c51..91e6407 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,11 +35,11 @@ jobs: parallelism: 6 thread: ${{ matrix.thread }} - publish_main: - name: Publish main branch artifacts + publish_master: + name: Publish master branch artifacts runs-on: ubuntu-latest needs: [test, build] - if: github.event_name == 'push' && github.event.ref == 'refs/heads/main' + if: github.event_name == 'push' && github.event.ref == 'refs/heads/master' steps: - uses: actions/checkout@v4 - uses: prometheus/promci@v0.0.2 @@ -57,7 +57,7 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') steps: - uses: actions/checkout@v4 - - uses: prometheus/promci@v0.0.2 + - uses: prometheus/promci@c3c93a50d581b928af720f0134b2b2dad32a6c41 - uses: ./.github/promci/actions/publish_release with: docker_hub_login: ${{ secrets.docker_hub_login }}