Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflow file to auto publish when version in package json is changed #146

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/build-test.yml
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 "bot@lftechnology.com"

- 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 }}
Copy link
Contributor Author

@samirsilwal samirsilwal Oct 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are the token available with same name everywhere @mesaugat ? or else will update it

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can keep it with the same name.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool

run: ./release.sh compare_and_release

- name: Deploy to NPM
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
yarn publish