-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Publish to NPM on GH Release Publish | ||
|
||
on: | ||
push: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
publish: | ||
if: github.repository == 'brainly/gene' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
target: [build, test, lint] | ||
|
||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9.12.0 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3 | ||
with: | ||
node-version: '18.20.0' | ||
cache: 'pnpm' | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Get NX projects | ||
id: nx-projects | ||
run: | | ||
# Kudos to: https://github.com/jscutlery/nx-completion/blob/ca0ab21396ec7748c770f8e15faed2cadff95c57/nx-completion.plugin.zsh#L39-L41 | ||
local cwd_id=$(echo $PWD | (command -v md5sum &> /dev/null && md5sum || md5 -r) | awk '{print $1}') | ||
tmp_cached_def="/tmp/nx-completion-$cwd_id.json" | ||
pnpm nx graph --file="$tmp_cached_def" > /dev/null | ||
echo "::set-output name=projects::$(cat $tmp_cached_def)" | ||
- name: Print NX projects | ||
run: echo "${{ steps.nx-projects.outputs.projects }}" | ||
|
||
# - name: Run ${{ matrix.target }} | ||
# run: pnpm nx run-many --target=${{ matrix.target }} --all | ||
|
||
# - name: Publish to NPM registry | ||
# env: | ||
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
# run: npm publish |