mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
27 lines
626 B
YAML
27 lines
626 B
YAML
|
name: Release
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- '*'
|
||
|
jobs:
|
||
|
automate:
|
||
|
runs-on: ubuntu-latest
|
||
|
env:
|
||
|
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
||
|
FORCE_COLOR: 1
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
submodules: true
|
||
|
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
||
|
- uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 12
|
||
|
registry-url: https://registry.npmjs.org/
|
||
|
- run: yarn
|
||
|
- run: grunt automated-release
|
||
|
#- run: npm publish
|
||
|
# env:
|
||
|
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|