Skip to content
Merged

Idn #152

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
7 changes: 3 additions & 4 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
cache-dependency-path: _packages/node/bun.lock
node-version: 24
cache: bun
registry-url: https://registry.npmjs.org/
Comment on lines +34 to 36

- name: Download Node Package Artifacts
Expand All @@ -45,4 +44,4 @@ jobs:
- name: Publish to NPM Registry
run: yarn publish _packages/node/
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Comment on lines 44 to +47
10 changes: 4 additions & 6 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,8 @@ jobs:
name: package-python
path: ./_packages/python/dist/

- name: Publish package
uses: pypa/gh-action-pypi-publish@v1.5.0
- name: Publish to PyPI
# Note: No "password" or "api-token" secret is referenced here
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages_dir: ./_packages/python/dist/
print_hash: true
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
packages-dir: ./_packages/python/dist/
Comment on lines +58 to +62
3 changes: 3 additions & 0 deletions .github/workflows/publish-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
runs-on: ubuntu-latest
environment: gh-pages
steps:
- name: Install Dependencies
run: sudo apt install libidn-dev

Comment on lines +14 to +16
- uses: actions/checkout@v3

- id: gem-cache
Expand Down
Loading