You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,9 @@ jobs:
18
18
build-src-package:
19
19
runs-on: ubuntu-latest
20
20
steps:
21
+
- name: Checkout repository
22
+
uses: actions/checkout@v4
23
+
21
24
- name: Create package
22
25
uses: minvws/action-generic-build-package@v1
23
26
with:
@@ -34,12 +37,11 @@ In this basic example, the workflow is executed automatically on push of tags.
34
37
35
38
The action has the following inputs:
36
39
37
-
- `include_paths`: A space-separated list with files and directories to include in the package relative to the working_directory.
38
-
- `package_file_name`: Name of the package (without extension), for example: `nl-example-package`.
39
-
- `working_directory`: The base directory containing the source code, only required if it does not need to be the root folder.
40
-
- `version_json_path`: The location where version.json needs to be stored. For example `public/version.json`. Default: `version.json`.
41
-
- `checkout_repository`: Boolean value inside string to enable or disable checkout repository
42
-
in the action. For example `"true"` or `"false"`. Default `"true"`.
40
+
- `package_file_name`: Name of the package (without extension), for example: `nl-example-package`. Required.
41
+
- `include_paths`: A space-separated list with files and directories to include in the package, relative to the `working_directory`. Optional, default: `"."`.
42
+
- `working_directory`: The base directory containing the source code, relative to the project root. Optional, default: `"."`.
43
+
- `version_json_path`: The location where version.json needs to be stored. For example `public/version.json`. Optional, default: `version.json`.
44
+
- `checkout_repository`: Whether to checkout the repository in the action. Boolean string, for example `"true"`. Optional, default: `"false"`.
0 commit comments