-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update workflow file to auto publish when version in package json is …
…changed
- Loading branch information
1 parent
5e6b77d
commit 2a9940e
Showing
1 changed file
with
52 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 |
---|---|---|
|
@@ -42,3 +42,55 @@ jobs: | |
files: ./lcov.info | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
verbose: true | ||
|
||
publish: | ||
name: Publish @leapfrogtechnology/async-store package | ||
needs: build | ||
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.RIBBY_GITHUB_TOKEN }} | ||
|
||
- name: Set git user | ||
run: | | ||
git config user.name "Ribby" | ||
git config user.email "[email protected]" | ||
- name: Setup ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.3' | ||
|
||
- name: Install gems | ||
run: | | ||
gem install github_changelog_generator | ||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: 'yarn' | ||
|
||
- name: Install node dependencies | ||
run: yarn | ||
|
||
- name: Install hub | ||
run: | | ||
sudo apt update | ||
sudo apt install hub | ||
hub --version | ||
- name: Run release script | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.RIBBY_GITHUB_TOKEN }} | ||
run: ./release.sh compare_and_release | ||
|
||
- name: Deploy to NPM | ||
run: | | ||
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | ||
yarn publish |