Skip to content

Commit

Permalink
add github-action for installing gardener-gha-libs
Browse files Browse the repository at this point in the history
Add a github-action to conveniently install gardener-gha-libs + needed
prerequisites (python). Intended for usage in GitHubActions that need
code from cicd-libs.
  • Loading branch information
ccwienk committed Jan 8, 2025
1 parent a4f7894 commit 35b6bd7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/actions/install-gardener-gha-libs/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Install Gardener-GHA-Libs
description: |
Install Python3 and gardener-gha-libs
runs:
using: composite
steps:
- name: install python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: install-gardener-gha-libs
shell: bash
run: |
python3 --version
pip install gardener-gha-libs

0 comments on commit 35b6bd7

Please sign in to comment.