Skip to content

update: add a new getter to the TransferTransaction class (#2214) #9

update: add a new getter to the TransferTransaction class (#2214)

update: add a new getter to the TransferTransaction class (#2214) #9

Workflow file for this run

name: Publish GH Pages
on:
push:
branches:
- main
defaults:
run:
shell: bash
permissions:
pages: write
contents: read
jobs:
build-and-deploy-docs:
name: Documentation
runs-on: [self-hosted, Linux, medium, ephemeral]
steps:
- name: Checkout Code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: recursive
- name: Install Task
uses: arduino/setup-task@b91d5d2c96a56797b48ac1e0e89220bf64044611 # v2.0.0
with:
version: 3.7.0
- name: Setup Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 18
- name: Install PNPM
uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
with:
version: 8.10.0
- name: Build @hashgraph/sdk
run: task build
- name: Generate pages
run: task docs
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
with:
path: "./docs"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@decdde0ac072f6dcbe43649d82d9c635fff5b4e4 # v4.0.4
with:
token: ${{ secrets.GITHUB_TOKEN }}