Skip to content

Publish

Publish #169

Workflow file for this run

name: Publish
on:
push:
branches:
- main
- release
- alpha
workflow_dispatch:
concurrency: release
jobs:
generate_and_publish_docs:
name: Build and Publish Docs
uses: algorandfoundation/algokit-shared-config/.github/workflows/build-and-publish-docs.yml@ci/reusable-release
with:
working-directory: .

Check failure on line 18 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Publish

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 18, Col: 26): Invalid input, working-directory is not defined in the referenced workflow.
node-version: 20.x
ci:
uses: algorandfoundation/algokit-shared-config/.github/workflows/node-ci.yml@main
with:
node-version: 20.x
working-directory: .
run-commit-lint: true
run-build: true
pre-test-script: |
pipx install algokit
algokit localnet start
npx --yes wait-on tcp:4001 -t 30000
build:
name: Build
uses: algorandfoundation/algokit-shared-config/.github/workflows/node-build-zip.yml@ci/reusable-release
# needs:
# - ci
with:
node-version: 20.x
build-path: dist
artifact-name: package
release:
name: Release
uses: algorandfoundation/algokit-shared-config/.github/workflows/node-release.yml@ci/reusable-release
needs:
- build
secrets:
BOT_ID: ${{ secrets.BOT_ID }}
BOT_SK: ${{ secrets.BOT_SK }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}