Skip to content

Commit

Permalink
Merge pull request #730 from particle-iot/feature/sc-126222/update-th…
Browse files Browse the repository at this point in the history
…e-particle-cli-executable-in-workbench

feature/sc-126222/update-the-particle-cli-executable-in-workbench
  • Loading branch information
hugomontero authored May 8, 2024
2 parents 0b69d42 + 906197f commit 83bb991
Show file tree
Hide file tree
Showing 24 changed files with 675 additions and 666 deletions.
347 changes: 0 additions & 347 deletions .circleci/config.yml

This file was deleted.

11 changes: 11 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Run Tests on Branch
on:
push:
branches:
- '**'
- '!master'
- '!staging'
jobs:
call-tests:
uses: ./.github/workflows/reusable-tests.yml
secrets: inherit
23 changes: 23 additions & 0 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Run Tests on Branch
on:
push:
tags:
- v*
jobs:
call-tests:
uses: ./.github/workflows/reusable-tests.yml
secrets: inherit
call-build:
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
needs: call-tests
call-publish-v2:
uses: ./.github/workflows/reusable-publish-v2.yml
secrets: inherit
needs: call-build
with:
environment: production
call-publish-npm:
uses: ./.github/workflows/reusable-publish-npm.yml
secrets: inherit
needs: call-publish-v2
Loading

0 comments on commit 83bb991

Please sign in to comment.