Skip to content

Commit

Permalink
feat: add @regrapes packages
Browse files Browse the repository at this point in the history
  • Loading branch information
timfullert committed Nov 23, 2021
1 parent 79921f7 commit e51ae3f
Show file tree
Hide file tree
Showing 3 changed files with 11,333 additions and 2,712 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: πŸš€ publish

on:
push:
branches:
- "main"

jobs:
release:
name: πŸš€ publish
runs-on: ubuntu-latest
steps:
- name: πŸ’Ύ caching
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: πŸ›’οΈ checkout
uses: actions/checkout@v2

- name: πŸ€– node
uses: actions/setup-node@v2
with:
node-version: "14"

- name: πŸ€– install dependencies
run: npm ci

- name: πŸš€ publish
run: npm run semantic-release
env:
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_NAME: "regrapes-bot"
GIT_AUTHOR_EMAIL: "system@regrapes.dev"
GIT_COMMITTER_NAME: "regrapes-bot"
GIT_COMMITTER_EMAIL: "system@regrapes.dev"
Loading

0 comments on commit e51ae3f

Please sign in to comment.