Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Commit

Permalink
fix: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Ratiashvili committed Nov 29, 2021
1 parent 3164c5b commit c950fd4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build
on:
push:
branches:
- develop
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Check out repository code
uses: actions/checkout@v2
- run: yarn --frozen-lockfile
- run: yarn build
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,3 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/index.html

name: Build
on:
push:
branches:
- develop
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Check out repository code
uses: actions/checkout@v2
- run: yarn --frozen-lockfile
- run: yarn build

0 comments on commit c950fd4

Please sign in to comment.