Skip to content

feat(aptos): changes to sdk #210

feat(aptos): changes to sdk

feat(aptos): changes to sdk #210

Workflow file for this run

# .github/workflows/publish.yml
name: Generate a build and push to another branch
on:
push:
branches:
- "main"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
steps:
- name: git-checkout
uses: actions/checkout@v2
- name: setup node.js
uses: actions/[email protected]
with:
node-version: 18.x
# cache: yarn
# cache-dependency-path: yarn.lock
- name: dep
run: yarn
- name: build
run: yarn build
- name: Generate Docs
run: npx typedoc --out docs src/index.ts
- name: prepare package
run: mkdir out && mv package.json out && mv dist out && mv README.md out && mv LICENSE out && mv docs out
- name: Prepare Production Release
uses: s0/git-publish-subdir-action@develop
if: ${{ github.ref == 'refs/heads/main' }}
env:
REPO: self
BRANCH: bleeding-edge
FOLDER: out
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: "Build: ({sha}) {msg}"