-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '2.0' into api-tips-example-test
- Loading branch information
Showing
302 changed files
with
25,261 additions
and
13,914 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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
- name: Install wasm-bindgen-cli | ||
uses: jetli/[email protected] | ||
with: | ||
version: "0.2.87" | ||
version: "0.2.89" | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
|
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 |
---|---|---|
|
@@ -65,7 +65,7 @@ jobs: | |
- name: Install wasm-bindgen-cli | ||
uses: jetli/[email protected] | ||
with: | ||
version: "0.2.88" | ||
version: "0.2.89" | ||
|
||
- name: Set Up Node.js ${{ matrix.node }} and Yarn Cache | ||
uses: actions/setup-node@v3 | ||
|
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
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
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,80 @@ | ||
name: Build and upload API docs | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
|
||
permissions: | ||
actions: 'write' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Get release language | ||
id: get_release_language | ||
run: | | ||
if [[ ${{ github.ref }} == *"python"* ]]; then | ||
echo LANGUAGE="python" >> $GITHUB_OUTPUT | ||
fi | ||
if [[ ${{ github.ref }} == *"nodejs"* ]]; then | ||
echo LANGUAGE="nodejs" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Check if release language is supported | ||
if: steps.get_release_language.outputs.LANGUAGE != 'python' && steps.get_release_language.outputs.LANGUAGE != 'nodejs' | ||
run: gh run cancel ${{ github.run_id }} | ||
|
||
- name: Set up Rust | ||
uses: ./.github/actions/setup-rust | ||
|
||
- name: Set Up Node.js 18 and Yarn Cache | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "18" | ||
|
||
- name: Install Required Dependencies (Ubuntu) | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libudev-dev libusb-1.0-0-dev | ||
- name: Get release version | ||
id: get_release_version | ||
run: | | ||
VERSION=$(echo ${{ github.ref }} | sed -e 's/.*v\([0-9]*\.[0-9]*\).*/\1/') | ||
echo VERSION=$VERSION >> $GITHUB_OUTPUT | ||
- name: Build python docs | ||
if: steps.get_release_language.outputs.LANGUAGE == 'python' | ||
run: | | ||
cd bindings/python | ||
pip install -r requirements-dev.txt | ||
PYTHONPATH=. pydoc-markdown | ||
cd - | ||
- name: Build nodejs docs | ||
if: steps.get_release_language.outputs.LANGUAGE == 'nodejs' | ||
run: | | ||
cd bindings/nodejs | ||
# The SDK still uses yarn classic: https://github.com/iotaledger/iota-sdk/issues/433 | ||
yarn set version classic | ||
yarn | ||
yarn create-api-docs --out ../../docs/nodejs | ||
cd - | ||
- name: Compress generated docs | ||
run: | | ||
tar czvf ${{ steps.get_release_language.outputs.LANGUAGE }}.tar.gz docs/* | ||
- name: Upload docs to AWS S3 | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_IOTA_WIKI }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_IOTA_WIKI }} | ||
AWS_DEFAULT_REGION: "eu-central-1" | ||
run: | | ||
aws s3 cp ${{ steps.get_release_language.outputs.LANGUAGE }}.tar.gz s3://files.iota.org/iota-wiki/iota-sdk/${{ steps.get_release_version.outputs.VERSION }}/ --acl public-read |
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 |
---|---|---|
|
@@ -30,3 +30,6 @@ address.json | |
.DS_Store | ||
book | ||
.venv* | ||
|
||
# Temporary documentation | ||
docs |
Oops, something went wrong.