Skip to content

Commit 5aa3e1c

Browse files
committed
Update action.yml
1 parent a4d854b commit 5aa3e1c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
| | `version` | Version of the artifact | `${{ github.event.release.tag_name \| ${{ github.ref_name }}` |
7474
| | `package_path` | Path to the package directory | `./` |
7575
| | `output_path` | Path to output directory for artifact bundle | `./.artifacts` |
76-
| | `configuration` | Build configuration (debug/release) | `release` |
76+
| | `configuration` | Build configuration (debug/release) | `release` |
7777

7878
### Action Outputs
7979

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
name: 'Create Artifact Bundle'
2-
authod: 'giginet'
2+
author: 'giginet'
33
description: 'Create artifact bundle for Swift Package'
44
inputs:
55
artifact_name:
66
description: 'Name of the executable to collect'
77
required: true
88
version:
99
description: 'Version of the executable'
10-
required: false
10+
required: true
1111
default: '${{ github.event.release.tag_name || github.ref_name }}'
1212
package_path:
1313
description: 'Path to the Swift package directory'
14-
required: false
14+
required: true
1515
default: '.'
1616
output_path:
1717
description: 'Path to output directory for artifact bundle'
18-
required: false
18+
required: true
1919
default: './.artifacts'
2020
configuration:
2121
description: 'Build configuration (debug/release)'

0 commit comments

Comments
 (0)