Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorres committed Jan 30, 2025
1 parent 5522cd1 commit df5a157
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/compatibility-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: compatibility-tests

on:
push:
tags:
- '*'
workflow_dispatch:
repository_dispatch:
types: [compatibility-tests]

jobs:
test-compatibility:
Expand Down Expand Up @@ -56,6 +55,9 @@ jobs:
PREVIOUS_VERSION="0.5.30"
fi
echo "Current version is $NEW_VERSION"
echo "Will be tested for compatibility from $PREVIOUS_VERSION"
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
echo "PREVIOUS_VERSION=$PREVIOUS_VERSION" >> $GITHUB_ENV
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/tmp-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: tmp

on:
workflow_dispatch:

permissions:
contents: write

jobs:
tag-and-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: dispatch-compatibility-tests
uses: peter-evans/repository-dispatch@v3
with:
event-type: compatibility-tests
5 changes: 5 additions & 0 deletions .github/workflows/upload-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
custom_tag: ${{ env.VERSION }}
github_token: ${{ github.token }}

- name: dispatch-compatibility-tests
uses: peter-evans/repository-dispatch@v3
with:
event-type: compatibility-tests

- name: install-dependencies
run: |
HELM_PKG="helm-v3.10.3-linux-amd64.tar.gz"
Expand Down

0 comments on commit df5a157

Please sign in to comment.