Skip to content

Commit

Permalink
fix: add config and install steps
Browse files Browse the repository at this point in the history
  • Loading branch information
aeffinidi committed Apr 29, 2024
1 parent 482880e commit 50696fd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches:
- '**' # matches every branch
- '!main'
pull_request:
# pull_request:

# Needed for nx-set-shas when run on the main branch
permissions:
Expand All @@ -16,6 +16,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: configure git
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: install dependencies
run: npm ci

- name: publish to npm
run: npx nx run-many -t release -p @affinidi-tdk/auth-provider

0 comments on commit 50696fd

Please sign in to comment.