-
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.
ci: add release-please support (#22)
- Loading branch information
1 parent
9dde55e
commit f571087
Showing
3 changed files
with
56 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This isn't meant for usage in consuming repos. It's for releasing this repo's actions/workflows itself. | ||
|
||
name: Release Please | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
target-branch: ${{ github.ref_name }} |
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,8 @@ | ||
{ | ||
"actions/contract-tests": "1.0.1", | ||
"actions/publish-pages": "1.0.2", | ||
"actions/release-secrets": "1.1.0", | ||
"actions/sign-dlls": "1.0.0", | ||
"actions/verify-hello-app": "1.0.1", | ||
".github/workflows": "1.0.0" | ||
} |
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,31 @@ | ||
{ | ||
"separate-pull-requests": true, | ||
"include-component-in-tag": true, | ||
"include-v-in-tag": true, | ||
"packages": { | ||
"actions/contract-tests": { | ||
"release-type": "simple", | ||
"package-name": "contract-tests" | ||
}, | ||
"actions/publish-pages": { | ||
"release-type": "simple", | ||
"package-name": "publish-pages" | ||
}, | ||
"actions/release-secrets": { | ||
"release-type": "simple", | ||
"package-name": "release-secrets" | ||
}, | ||
"actions/sign-dlls": { | ||
"release-type": "simple", | ||
"package-name": "sign-dlls" | ||
}, | ||
"actions/verify-hello-app": { | ||
"release-type": "simple", | ||
"package-name": "verify-hello-app" | ||
}, | ||
".github/workflows": { | ||
"release-type": "simple", | ||
"package-name": "workflows" | ||
} | ||
} | ||
} |