Skip to content

Commit

Permalink
Update workflow file to auto publish when version in package json is …
Browse files Browse the repository at this point in the history
…changed
  • Loading branch information
samirsilwal committed Oct 20, 2024
1 parent 5e6b77d commit 2a9940e
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2a9940e

Please sign in to comment.