Skip to content

Commit

Permalink
fix: add release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed May 29, 2024
1 parent 5517df0 commit 8775614
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

name: release-please
jobs:
# test-node:
# uses: bgd-labs/github-workflows/.github/workflows/test-node.yml@main

release-please:
runs-on: ubuntu-latest
outputs:
releaseCreated: ${{ steps.release.outputs.release_created }}
steps:
- uses: google-github-actions/release-please-action@v4.1.0
id: release
with:
release-type: node

release-node:
uses: bgd-labs/github-workflows/.github/workflows/release-node.yml@main
if: ${{ needs.release-please.outputs.releaseCreated }}
needs:
# - test-node
- release-please
secrets:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}

0 comments on commit 8775614

Please sign in to comment.