mirror of
https://github.com/brittonhayes/validate-yaml.git
synced 2024-11-23 13:40:57 -05:00
27 lines
529 B
YAML
27 lines
529 B
YAML
|
name: Release
|
||
|
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: yarn install
|
||
|
|
||
|
- name: Release
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.DEPENDABOT_PUBLIC_TOKEN }}
|
||
|
run: npx semantic-release
|