-
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.
Merge pull request #5 from grafana/4-fix-k6-permission-in-docker-image
fix k6 permission in docker image
- Loading branch information
Showing
8 changed files
with
63 additions
and
56 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
🎉 **{{.Name}}** `{{.Version}}` is here! | ||
🎉 {{.Name}} `{{.Version}}` is here! | ||
|
||
## Contents | ||
|
||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ branding: | |
color: orange | ||
|
||
inputs: | ||
in: | ||
args: | ||
description: input file name | ||
required: true | ||
|
||
|
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
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
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
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
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,12 @@ | ||
🎉 k6dist `v0.1.2` is here! | ||
|
||
## Fixes | ||
|
||
- The executable bit of the k6 binary was removed for some reason while copying to the Docker image. Now the executable bit is explicitly set during copying. | ||
|
||
## Refactors | ||
|
||
- GitHub Action input environment variables are now handled automatically based on the command flag. The name of the environment variable is generated from the name of the flag. In this way, all environment variables belonging to flags are processed. | ||
|
||
- The GitHub Action parameter corresponding to the positional argument is now `args`, i.e. the corresponding environment variable `INPUT_ARGS`. Its value is split using the shlex package. | ||
|