Skip to content

Commit

Permalink
fix/release workflow dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fsegurai committed Nov 6, 2024
1 parent acc5faf commit f33c649
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 25 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/release-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,11 @@ name: Release Demo
# Job will only run on push to the main branch after the test job and release library job have passed

on:
push:
branches: [ "main" ]
paths-ignore:
- ".github/**"
- "docs/**"
- "assets/**"
- "demo/public/**"
- "*.yml"
- "*.json"
- "*.config"
- "*.md"
- "!package.json"
workflow_run:
workflows: [ "Test Lib-Demo", "Release Library" ]
workflows: [ "Release Library" ]
types: [ completed ]
workflow_dispatch:
inputs: { }

env:
ARTIFACT_NAME: "build-demo-artifact"
Expand Down
14 changes: 2 additions & 12 deletions .github/workflows/release-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,11 @@ name: Release Library
# Job will only run on push to the main branch after the test job has passed

on:
push:
branches: [ "main" ]
paths-ignore:
- ".github/**"
- "docs/**"
- "assets/**"
- "demo/public/**"
- "*.yml"
- "*.json"
- "*.config"
- "*.md"
- "!package.json"
workflow_run:
workflows: [ "Test Lib-Demo" ]
types: [ completed ]
workflow_dispatch:
inputs: { }

env:
ARTIFACT_NAME: "build-lib-artifact"
Expand Down

0 comments on commit f33c649

Please sign in to comment.