Ghost/.github/workflows/release.yml
2021-01-04 08:56:33 +00:00

27 lines
628 B
YAML

name: Release
on:
push:
tags:
- '*'
jobs:
automate:
runs-on: ubuntu-18.04
env:
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
FORCE_COLOR: 1
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-node@v2
with:
node-version: '12.18.0'
- run: yarn
- run: grunt release --skip-tests
- run: npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
- run: npm publish
- uses: tryghost/action-ghost-release@master