Skip to content

Commit

Permalink
Take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
reneme committed Nov 1, 2024
1 parent a0cd1cd commit 08be70a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/actions/read-repo-config/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ name: Read Repository Configuration
description: Reads the repository configuration file and makes it available as environment variables

env:
READ_CONFIG_SCRIPT: ./src/scripts/read_repo_config.py
READ_CONFIG_SCRIPT: ${{ github.action_path }}/../../../src/scripts/read_repo_config.py

runs:
using: composite
steps:
- name: Read Repository Configuration into Environment Variables
run: python3 ${{ env.READ_CONFIG_SCRIPT }} all >> $GITHUB_ENV
run: ${{ env.READ_CONFIG_SCRIPT }} all >> $GITHUB_ENV
shell: python

0 comments on commit 08be70a

Please sign in to comment.