0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Deleted Release GitHub Action

- I don't want it accidentally triggering whilst I'm importing packages,
  and it's likely to change anyway in the near future
This commit is contained in:
Daniel Lockyer 2022-07-20 17:16:07 +02:00
parent 6f1e7fc40f
commit 70110a39cc
No known key found for this signature in database
GPG key ID: D21186F0B47295AD

View file

@ -1,29 +0,0 @@
name: Release
on:
push:
tags:
- '*'
jobs:
automate:
runs-on: ubuntu-18.04
env:
RELEASE_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_NOTIFICATION_URL: ${{ secrets.RELEASE_NOTIFICATION_URL }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
FORCE_COLOR: 1
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-node@v3
env:
FORCE_COLOR: 0
with:
node-version: '14'
cache: yarn
- run: yarn
- run: npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
- run: npm publish
- uses: tryghost/action-ghost-release@main