Skip to content

Commit

Permalink
ci: added release-please
Browse files Browse the repository at this point in the history
  • Loading branch information
Tbaile committed Oct 23, 2023
1 parent 30d4ccb commit 1817998
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@ jobs:
release-please:
runs-on: ubuntu-latest
steps:
- run: |
./build.sh
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
package-name: ns8-user-manager
package-name: ns8-user-manager
- name: Attach Release
if: ${{ steps.release.outputs.release_created }}
run:
tar cvf ns8-user-manager-${{ steps.release.outputs.tag_name }}.tar.gz dist
gh release upload ${{ steps.release.outputs.tag_name }} ns8-user-manager-${{ steps.release.outputs.tag_name }}.tar.gz dist

0 comments on commit 1817998

Please sign in to comment.