Skip to content

Commit

Permalink
chore: remove node_modules and dist / add release process
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdevpereira committed Oct 4, 2022
1 parent b0d0d7a commit 1bc874d
Show file tree
Hide file tree
Showing 1,966 changed files with 101 additions and 372,910 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Publish

on:
release:
types: [published, edited]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.release.tag_name }}

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16

- uses: JasonEtco/build-and-tag-action@v2
env:
GITHUB_TOKEN: ${{ github.token }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules
/dist
Loading

0 comments on commit 1bc874d

Please sign in to comment.