Skip to content

Commit fb977b4

Browse files
authored
fix: use @ instead of : for action name
1 parent 7514859 commit fb977b4

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

.releaserc

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
2-
"branches": ["main"],
2+
"branches": [
3+
"main"
4+
],
35
"plugins": [
46
"@semantic-release/commit-analyzer",
57
"@semantic-release/release-notes-generator",
@@ -8,7 +10,7 @@
810
{
911
"assets": [
1012
{
11-
"path": "app/build/libs/app.jar",
13+
"path": "app/build/libs/app.jar"
1214
}
1315
]
1416
}
@@ -18,7 +20,9 @@
1820
{
1921
"replacements": [
2022
{
21-
"files": ["Dockerfile"],
23+
"files": [
24+
"Dockerfile"
25+
],
2226
"from": "ghcr.io/codingpot/github-org-member-manage-action:.*",
2327
"to": "ghcr.io/codingpot/github-org-member-manage-action:${nextRelease.version.split('.')[0]}",
2428
"results": [
@@ -32,9 +36,11 @@
3236
"countMatches": true
3337
},
3438
{
35-
"files": ["README.md"],
36-
"from": "\"codingpot/github-org-member-manage-action:v.*\"",
37-
"to": "\"codingpot/github-org-member-manage-action:v${nextRelease.version.split('.')[0]}\"",
39+
"files": [
40+
"README.md"
41+
],
42+
"from": "\"codingpot/github-org-member-manage-action@v.*\"",
43+
"to": "\"codingpot/github-org-member-manage-action@v${nextRelease.version.split('.')[0]}\"",
3844
"results": [
3945
{
4046
"file": "README.md",
@@ -51,7 +57,10 @@
5157
[
5258
"@semantic-release/git",
5359
{
54-
"assets": ["Dockerfile", "README.md"]
60+
"assets": [
61+
"Dockerfile",
62+
"README.md"
63+
]
5564
}
5665
]
5766
]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ members:
2222
2323
```yaml
2424
steps:
25-
- uses: "codingpot/github-org-member-manage-action:v1"
25+
- uses: "codingpot/github-org-member-manage-action@v1"
2626
with:
2727
gh_token: ${{ secrets.GH_TOKEN }} # (required) Needs admin:org permission
2828
members_filepath: members.yaml # (optional)

0 commit comments

Comments
 (0)