Skip to content

Commit a4bac8c

Browse files
committed
Fix issue running workflow
Fixed the issue. Composite actions must be in .github/actions/, not .github/workflows/.
1 parent 07e3371 commit a4bac8c

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,4 @@ runs:
5757
run: npm publish ${{ inputs.folder }} --tag ${{ inputs.tag }} --provenance
5858
shell: bash
5959
working-directory: ${{ inputs.working-directory }}
60+

.github/workflows/release-ionic.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
27-
- uses: ./.github/workflows/publish-npm.yml
27+
- uses: ./.github/actions/publish-npm
2828
with:
2929
scope: '@ionic/core'
3030
tag: ${{ inputs.tag }}
@@ -55,7 +55,7 @@ jobs:
5555
name: ionic-docs
5656
path: ./packages/docs
5757
filename: DocsBuild.zip
58-
- uses: ./.github/workflows/publish-npm.yml
58+
- uses: ./.github/actions/publish-npm
5959
with:
6060
scope: '@ionic/docs'
6161
tag: ${{ inputs.tag }}
@@ -74,7 +74,7 @@ jobs:
7474
name: ionic-core
7575
path: ./core
7676
filename: CoreBuild.zip
77-
- uses: ./.github/workflows/publish-npm.yml
77+
- uses: ./.github/actions/publish-npm
7878
with:
7979
scope: '@ionic/angular'
8080
tag: ${{ inputs.tag }}
@@ -100,7 +100,7 @@ jobs:
100100
name: ionic-core
101101
path: ./core
102102
filename: CoreBuild.zip
103-
- uses: ./.github/workflows/publish-npm.yml
103+
- uses: ./.github/actions/publish-npm
104104
with:
105105
scope: '@ionic/react'
106106
tag: ${{ inputs.tag }}
@@ -125,7 +125,7 @@ jobs:
125125
name: ionic-core
126126
path: ./core
127127
filename: CoreBuild.zip
128-
- uses: ./.github/workflows/publish-npm.yml
128+
- uses: ./.github/actions/publish-npm
129129
with:
130130
scope: '@ionic/vue'
131131
tag: ${{ inputs.tag }}
@@ -150,7 +150,7 @@ jobs:
150150
name: ionic-core
151151
path: ./core
152152
filename: CoreBuild.zip
153-
- uses: ./.github/workflows/publish-npm.yml
153+
- uses: ./.github/actions/publish-npm
154154
with:
155155
scope: '@ionic/angular-server'
156156
tag: ${{ inputs.tag }}
@@ -176,7 +176,7 @@ jobs:
176176
name: ionic-react
177177
path: ./packages/react
178178
filename: ReactBuild.zip
179-
- uses: ./.github/workflows/publish-npm.yml
179+
- uses: ./.github/actions/publish-npm
180180
with:
181181
scope: '@ionic/react-router'
182182
tag: ${{ inputs.tag }}
@@ -201,7 +201,7 @@ jobs:
201201
name: ionic-vue
202202
path: ./packages/vue
203203
filename: VueBuild.zip
204-
- uses: ./.github/workflows/publish-npm.yml
204+
- uses: ./.github/actions/publish-npm
205205
with:
206206
scope: '@ionic/vue-router'
207207
tag: ${{ inputs.tag }}

0 commit comments

Comments
 (0)