Skip to content

Commit 089ce46

Browse files
committed
Fix actions
1 parent 67fcc32 commit 089ce46

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ jobs:
6363
commit_message: "Update version to v${{ steps.version.outputs.version }}"
6464
file_pattern: src/SharpInternalServiceProvider.php
6565
tagging_message: "v${{ steps.version.outputs.version }}"
66-
66+
deploy:
67+
runs-on: ubuntu-latest
68+
needs: release
69+
steps:
6770
- name: Deploy docs
6871
uses: code16/sharp/.github/workflows/deploy.yml@main

.github/workflows/tmp-test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ name: Test dispatch
33
on:
44
workflow_dispatch:
55
jobs:
6-
lint:
6+
test:
77
runs-on: ubuntu-latest
8+
steps:
9+
- name: Test
10+
run: echo "Test"
11+
deploy:
12+
runs-on: ubuntu-latest
13+
needs: test
814
steps:
915
- name: Deploy docs
1016
uses: code16/sharp/.github/workflows/deploy.yml@main

0 commit comments

Comments
 (0)