Skip to content

chore(git): update github slack messages #262

chore(git): update github slack messages

chore(git): update github slack messages #262

Workflow file for this run

name: Release
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
on:
push:
branches:
- main
- alpha
jobs:
build:
uses: ar-io/ar-io-sdk/.github/workflows/build.yml@alpha

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "ar-io/ar-io-sdk/.github/workflows/build.yml@alpha" (source branch with sha:32b58d9bd89604760358f33a0af5807da401505f) : workflow is not reusable as it is missing a `on.workflow_call` trigger
secrets: inherit
release:
runs-on: ubuntu-latest
needs: build
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.CI_GITHUB_TOKEN }}
- name: Set Up node
uses: actions/setup-node@v3
with:
cache: 'yarn'
node-version-file: .nvmrc
- name: Install dependencies
run: yarn --immutable --immutable-cache
- name: Build
run: yarn build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.npm_token }}
run: yarn semantic-release