-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added e2e tests GH action, with docker compose build - debugging action
- Loading branch information
Showing
2 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: 'Set environment variables' | ||
description: 'Configures environment variables for a workflow' | ||
inputs: | ||
varFilePath: | ||
description: 'File path to variable file or directory. Defaults to ./.github/variables/* if none specified and runs against each file in that directory.' | ||
required: false | ||
default: ./.github/variables/* | ||
runs: | ||
using: "composite" | ||
steps: | ||
- run: | | ||
Get-Content ${{ inputs.varFilePath }} >> $Env:GITHUB_ENV | ||
shell: pwsh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters