Skip to content

Commit

Permalink
restore data path env
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed Nov 20, 2024
1 parent 828bb46 commit 7ad6228
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ on:
tags:
- '*'

env:
DATA_PATH: /tmp/data

# Only cancel in-progress jobs or runs for the current workflow
# This cancels the already triggered workflows for a specific PR without canceling
# other instances of this workflow (other PRs, scheduled triggers, etc) when something
Expand All @@ -29,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- id: data_path
run: echo "path=${{ runner.temp }}/data" >> $GITHUB_OUTPUT
run: echo "path=${{ env.DATA_PATH }}" >> $GITHUB_OUTPUT
outputs:
data_path: ${{ steps.data_path.outputs.path }}

Expand Down

0 comments on commit 7ad6228

Please sign in to comment.