Skip to content

Commit 8cc9ded

Browse files
authored
Merge pull request #685 from stenciljs/gm/release-action-finetune
chore(github-actions): finetuned workflows
2 parents 72330cc + 2973dfb commit 8cc9ded

File tree

10 files changed

+13
-4
lines changed

10 files changed

+13
-4
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ updates:
3131
- "minor"
3232
major-deps-updates:
3333
update-types:
34-
- "major"
34+
- "major"

.github/ionic-issue-bot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,4 @@ wrongRepo:
121121
close: true
122122
lock: true
123123
dryRun: false
124+

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,4 @@ jobs:
4545
uses: stenciljs/.github/actions/upload-archive@main
4646
with:
4747
paths: index.js
48+

.github/workflows/format.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ jobs:
1919
- name: Prettier Check
2020
run: npm run prettier.dry-run
2121
shell: bash
22+

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ jobs:
2525
name: Smoke Testing
2626
needs: [build_cli]
2727
uses: ./.github/workflows/test-component-starter.yml
28+

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,4 @@ jobs:
103103
run: npm publish --tag ${{ inputs.tag }} --provenance
104104
shell: bash
105105
working-directory: ${{ inputs.package-directory }}
106+

.github/workflows/release-dev.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@ jobs:
3838
with:
3939
tag: dev
4040
version: ${{ needs.get_dev_version.outputs.dev-version }}
41+

.github/workflows/release-orchestrator.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,14 @@ permissions:
2727

2828
jobs:
2929
run-dev:
30-
if: ${{ github.event.inputs.channel == 'dev' }}
30+
if: ${{ inputs.channel == 'dev' }}
3131
uses: ./.github/workflows/release-dev.yml
3232
secrets: inherit
3333

3434
run-production:
35-
if: ${{ github.event.inputs.channel == 'production' }}
35+
if: ${{ inputs.channel == 'production' }}
3636
uses: ./.github/workflows/release-production.yml
3737
secrets: inherit
3838
with:
39-
bump: ${{ github.event.inputs.bump }}
39+
bump: ${{ inputs.bump }}
40+

.github/workflows/release-production.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,4 @@ jobs:
4545
with:
4646
tag: latest
4747
version: ${{ inputs.bump }}
48+

.github/workflows/test-component-starter.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,4 @@ jobs:
5252
run: npm run test -- --no-build # the project was just built, don't build it again
5353
working-directory: ./tmp-component-starter
5454
shell: bash
55+

0 commit comments

Comments
 (0)