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
+16-6
Original file line number
Diff line number
Diff line change
@@ -13,18 +13,18 @@ When triggered, this workflow:
13
13
### Prerequisites
14
14
15
15
- Create a GitHub Actions workflow file `.github/workflows/release.yml` in your repository.
16
-
- Decide how the compliation workflow will be triggered. The recommended way is to configure workflow activation on git tag creation. This should simplify versioning and ensure unique release names.
16
+
- Decide how the compilation workflow will be triggered. The recommended way is to configure workflow activation on git tag creation. This should simplify versioning and ensure unique release names.
The workflow expects the following inputs in the `with` section:
24
-
-`release_name` (required) - release name template that includes a release version variable, e.g. `${{ github.ref_name }}`
25
-
-`package` (optional) - package name to build. Builds contract in working directory by default
26
-
-`relative_path` (optional) - relative path to the contract source directory. Defaults to the repository root directory
27
-
-`make_target` (optional) - make target to invoke. Not invoked by default. Useful for contracts with dependencies, that must be built before the main contract
24
+
-`release_name` (required) - release name template (should include a release version variable, e.g. `${{ github.ref_name }}`)
25
+
-`package` (optional) - package name to build, builds contract in working directory by default
26
+
-`relative_path` (optional) - relative path to the contract source directory, defaults to the repository root directory
27
+
-`make_target` (optional) - make target to invoke, empty by default (useful for contracts with dependencies that must be built before the main contract)
28
28
29
29
### Basic workflow for the reporisotry with a single contract
30
30
@@ -33,7 +33,7 @@ name: Build and Release # name it whatever you like
33
33
on:
34
34
push:
35
35
tags:
36
-
- 'v*'# triggered whenever a new tag (previxed with "v") is pushed to the repository
36
+
- 'v*'# triggered whenever a new tag (prefixed with "v") is pushed to the repository
0 commit comments