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 e7e49e0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latestu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-setup@v1
Expand All @@ -18,7 +18,7 @@ jobs:
eslint:
name: Eslint
runs-on: ubuntu-latestu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-setup@v1
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,16 @@ jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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 e7e49e0

Please sign in to comment.