Skip to content

ci: remove publish

ci: remove publish #2

Workflow file for this run

name: Release
on:
push:
branches:
- ci/use-semantic-release
- master
- next
- "*.x"
permissions:
contents: read # for checkout
jobs:
build_and_test:
uses: ./.github/workflows/build-and-test.yml

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" -> "./.github/workflows/build-and-test.yml" (source branch with sha:352a2d8987e62c3bf20c8199d822ff0a35c3564c) : No steps defined in `steps` and no workflow called in `uses` for the following jobs: publish
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
needs:
- build_and_test
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.CI_GITHUB_TOKEN }}
persist-credentials: false
- name: Setup LTS Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Download all artifacts
uses: actions/download-artifact@v3
with:
path: artifacts
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --dry-run