Skip to content

Commit

Permalink
feat: add release please action (#21)
Browse files Browse the repository at this point in the history
Because

- We need official release tag for versioning

This commit

- Implement release-please action
  • Loading branch information
EiffelFly committed Jun 20, 2022
1 parent c952b73 commit 2321bab
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 1 deletion.
46 changes: 45 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1 +1,45 @@
name: Release Please
name: Release Please

on:
push:
branches:
- main

jobs:
release-please:
runs-on: ubuntu-latest
outputs:
RELEASE_CREATED: ${{ steps.release.outputs.release_created }}
TAG_NAME: ${{ steps.release.outputs.tag_name }}
SHA: ${{ steps.release.outputs.sha }}
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
token: ${{ secrets.botGitHubToken }}
release-type: node
command: manifest
config-file: release-please/config.json
manifest-file: release-please/manifest.json
- uses: actions/checkout@v2
with:
token: ${{ secrets.botGitHubToken }}
- name: Import GPG Key
uses: crazy-max/ghaction-import-gpg@v4
with:
gpg_private_key: ${{ secrets.botGPGPrivateKey }}
passphrase: ${{ secrets.botGPGPassphrase }}
git_user_signingkey: true
git_commit_gpgsign: true
git_tag_gpgsign: true
- name: Tag major and minor versions
if: ${{ steps.release.outputs.release_created }}
run: |
git tag -d v${{ steps.release.outputs.major }} || true
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git push origin :v${{ steps.release.outputs.major }} || true
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }} pointing to tag ${{ steps.release.outputs.tag_name }}"
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} pointing to tag ${{ steps.release.outputs.tag_name }}"
git push origin v${{ steps.release.outputs.major }}
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
11 changes: 11 additions & 0 deletions release-please/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"packages": {
".": {
"release-type": "node",
"draft": false,
"prerelease": true,
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": false
}
}
}
3 changes: 3 additions & 0 deletions release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.0.1-alpha"
}

0 comments on commit 2321bab

Please sign in to comment.