Skip to content

Commit

Permalink
ci(core): add publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TillaTheHun0 committed Jun 25, 2021
1 parent fc9cea6 commit 8022501
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/publish-core.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: publish core

on:
push:
tags:
- 'hyper-core@*'

jobs:
publish-egg:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- run: deno install -A -f --unstable --no-check https://x.nest.land/[email protected]/eggs.ts
- run: |
export PATH="/home/runner/.deno/bin:$PATH"
eggs link ${{ secrets.NESTAPIKEY }}
cd packages/core
eggs publish --yes

0 comments on commit 8022501

Please sign in to comment.