Skip to content

Commit

Permalink
Merge pull request #8 from matheusdc/fix/update-github-actions-script
Browse files Browse the repository at this point in the history
Fix Github Actions Release
  • Loading branch information
luistak authored Apr 28, 2022
2 parents efc7aa3 + 01fc92d commit 06c7e3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: CI

on:
push:
branches:
- master
on: [pull_request]

jobs:
CI:
Expand All @@ -20,7 +17,7 @@ jobs:
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v2
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
node-version: '${{ steps.nvm.outputs.NVMRC }}'

- name: Use cached node_modules
uses: actions/cache@v1
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
node-version: 'lts/*'
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 06c7e3d

Please sign in to comment.