Skip to content

Add createATA idempotent instruction #4

Add createATA idempotent instruction

Add createATA idempotent instruction #4

Workflow file for this run

name: Create documentation
on:
push:
branches: [ main ]
paths:
- 'Sources/**/*'
jobs:
docs:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: fwcd/swift-docc-action@v1
with:
target: SolanaSwift
output: ./docs
hosting-base-path: solana-swift
disable-indexing: 'true'
transform-for-static-hosting: 'true'
- name: Init new repo for docs
run: |
cd docs
git init
git add -A
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m 'deploy'
- name: Force push to destination branch
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: docs
force: true
directory: ./docs