Skip to content

build: Disable PR trigger for now, add publish command for algo-ts #6

build: Disable PR trigger for now, add publish command for algo-ts

build: Disable PR trigger for now, add publish command for algo-ts #6

Workflow file for this run

name: Publish
on:
push:
branches:
- compiler-alpha
- main
- release
workflow_dispatch:
concurrency: release
permissions:
contents: write
jobs:
ci:
name: Build and test
uses: ./.github/workflows/ci-all.yml
release:
name: Release
needs: ci
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Download package artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Prepare @algorandfoundation/algo-ts
run: cp .releaserc.json artifacts/algo-ts/.releaserc.json
- name: Publish @algorandfoundation/algo-ts
run: npx semantic-release
working-directory: artifacts/algo-ts/
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}