Skip to content

feat: more bracket initializers #61

feat: more bracket initializers

feat: more bracket initializers #61

Workflow file for this run

name: Release

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

(Line: 11, Col: 3): The workflow must contain at least one job with no dependencies.
on:
push:
branches:
- main
permissions:
contents: read # for checkout
jobs:
release:
needs: rspec
name: Release
runs-on: ubuntu-latest
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
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies
run:
npm i -g semantic-release-rubygem conventional-changelog-conventionalcommits @semantic-release/changelog @semantic-release/git @semantic-release/release-notes-generator @semantic-release/github @semantic-release/commit-analyzer semantic-release
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
run: semantic-release