Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"caseSensitive": false,
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"words": [
"yarnrc",
"USERCONFIG",
"cicd",
"creds",
"easignore",
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/release.sdk.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,35 @@ jobs:
echo "@ever-teams:registry=https://registry.npmjs.org/" >> ~/.npmrc
echo "✅ NPM authentication configured"

- name: Configure Registry
uses: ever-co/ever-gauzy/.github/actions/configure-registry@aa4ee19926fabcf820aa1294385a76aec6bdb548
with:
verdaccio-registry: ${{ vars.VERDACCIO_REGISTRY }}
verdaccio-token: ${{ secrets.VERDACCIO_TOKEN }}
Comment on lines +67 to +71
force-public: ${{ vars.VERDACCIO_FORCE_PUBLIC }}
expect-vip: ${{ vars.RUNNER_LINUX_X64_4 != '' }}

- name: Install dependencies (Yarn)
run: yarn install --frozen-lockfile

- name: Restore registry config (keep the checkout npmjs-clean)
# Configure Registry above may rewrite yarn.lock and append registry lines
# to the tracked .npmrc/.yarnrc so the install resolves through the internal
# Verdaccio cache. Later steps run `git add .` + push version bumps and then
# publish to npmjs - a committed rewritten lockfile or a leftover project-level
# registry= line pointing at a LAN VIP must never survive past the install.
# Tracked files are restored; untracked leftovers are removed.
if: always()
run: |
for f in yarn.lock .npmrc .yarnrc; do
if git ls-files --error-unmatch "$f" >/dev/null 2>&1; then
git checkout -- "$f"
else
rm -f "$f"
fi
done
rm -f yarn.lock.rewritten package-lock.json.rewritten

- name: Build SDK packages
run: |
# Build the publishable packages (the private @ever-teams/types is bundled
Expand Down
Loading