Skip to content

ci: add standard workflows (#6) #1

ci: add standard workflows (#6)

ci: add standard workflows (#6) #1

---
name: Release
# yamllint disable-line rule:truthy
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "lts/*"
- name: Install dependencies
run: npm --prefix .release/ ci
- name: Release
run: npx --prefix .release/ semantic-release
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GH_TOKEN }}