Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rocka committed Jul 7, 2023
1 parent 9e03321 commit 1d29fe3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: CI

on:
push:
branches: [master]
pull_request:
release:
types: [created]
Expand All @@ -19,8 +20,15 @@ jobs:
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: latest
cache: yarn

- name: Build
run: |
yarn install
BUILD_MODE=push
if [[ "$GITHUB_REF_TYPE" == "tag" ]]; then
BUILD_TYPE=tag
Expand Down

0 comments on commit 1d29fe3

Please sign in to comment.