Skip to content

Commit 838cdc9

Browse files
authored
Fix workflow dispatch (#64)
1 parent 2a9f611 commit 838cdc9

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "build"
1+
name: Build
22

33
on:
44
pull_request:
@@ -10,7 +10,9 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13+
1314
- uses: actions/checkout@v4
15+
1416
- run: |
1517
npm install
1618
npm run all

.github/workflows/create-release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ concurrency:
1010
cancel-in-progress: true
1111

1212
jobs:
13-
1413
create_release:
1514
name: Create release
1615
runs-on: ubuntu-latest
@@ -36,9 +35,9 @@ jobs:
3635
uses: gittools/actions/gitversion/execute@v0
3736
with:
3837
useConfigFile: true
39-
38+
4039
- name: Create Release
41-
if: ${{ steps.changes.outputs.dist == 'true' }}
40+
if: ${{ steps.changes.outputs.dist == 'true' || github.event_name == 'workflow_dispatch' }}
4241
uses: ncipollo/[email protected]
4342
with:
4443
allowUpdates: false

.github/workflows/smoke-screen-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "smoke-screen-tests"
1+
name: Smoke screen tests
22
on:
33
push:
44
branches-ignore:
@@ -8,7 +8,9 @@ jobs:
88
sst:
99
runs-on: ubuntu-latest
1010
steps:
11+
1112
- uses: actions/checkout@v4
13+
1214
- run: |
1315
npm install
1416
npm test

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "test"
1+
name: Tests
22

33
on:
44
pull_request:

0 commit comments

Comments
 (0)