Skip to content

Commit

Permalink
Added environment variables into podman run.
Browse files Browse the repository at this point in the history
  • Loading branch information
alee-ntap committed Nov 3, 2023
1 parent 4195b5d commit e89786f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build_pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ jobs:
id: build
run: |
pkg="$(podman run \
-e EMAIL=${{ env.INPUT_EMAIL }} \
-e NAME=${{ env.INPUT_NAME }} \
-e DIST=${{ env.INPUT_DIST }} \
-e MESSAGE=${{ env.INPUT_MESSAGE }} \
--rm \
-v "$PWD/input:/input" \
-v "$PWD/output:/output" \
Expand Down Expand Up @@ -149,6 +153,10 @@ jobs:
run: |
mkdir output
pkg="$(podman run \
-e EMAIL=${{ env.INPUT_EMAIL }} \
-e NAME=${{ env.INPUT_NAME }} \
-e DIST=${{ env.INPUT_DIST }} \
-e MESSAGE=${{ env.INPUT_MESSAGE }} \
--rm \
-v "$PWD/input:/input" \
-v "$PWD/output:/output" \
Expand Down

0 comments on commit e89786f

Please sign in to comment.