From 90d7ce6dbc48fe9d91920326e02e66d3b011a222 Mon Sep 17 00:00:00 2001 From: Charlie Haley Date: Wed, 24 Apr 2024 20:22:31 +0100 Subject: [PATCH] update pipelines --- .github/workflows/release-chart.yaml | 4 ++-- .github/workflows/test-chart.yaml | 9 +++------ 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release-chart.yaml b/.github/workflows/release-chart.yaml index 19e41d0..ee8fb62 100644 --- a/.github/workflows/release-chart.yaml +++ b/.github/workflows/release-chart.yaml @@ -2,8 +2,8 @@ name: Release Chart on: push: - branches: - - main + tags: + - "v*" jobs: release: diff --git a/.github/workflows/test-chart.yaml b/.github/workflows/test-chart.yaml index 736b1e8..927f412 100644 --- a/.github/workflows/test-chart.yaml +++ b/.github/workflows/test-chart.yaml @@ -8,22 +8,19 @@ on: workflow_dispatch: pull_request: -permissions: - contents: read - jobs: test: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Configure Git run: | - git config user.name "$GITHUB_ACTOR" - git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + git config user.name blobbot-helm + git config user.email blobbot-helm@github.com - name: Test run: make chart-test