Skip to content

Commit

Permalink
github actions creado y configurado
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusmira committed Jun 8, 2023
1 parent 630ffa2 commit a310652
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

name: Semantic Version

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 14.17

- name: Install Dependencies
run: yarn install

- name: Build App
run: yarn build

- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ lerna-debug.log*
build-storybook.log

node_modules

dist
dist-ssr
*.local
/storybook-static
Expand Down

0 comments on commit a310652

Please sign in to comment.