We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67fcc32 commit 089ce46Copy full SHA for 089ce46
2 files changed
.github/workflows/release.yml
@@ -63,6 +63,9 @@ jobs:
63
commit_message: "Update version to v${{ steps.version.outputs.version }}"
64
file_pattern: src/SharpInternalServiceProvider.php
65
tagging_message: "v${{ steps.version.outputs.version }}"
66
-
+ deploy:
67
+ runs-on: ubuntu-latest
68
+ needs: release
69
+ steps:
70
- name: Deploy docs
71
uses: code16/sharp/.github/workflows/deploy.yml@main
.github/workflows/tmp-test.yml
@@ -3,8 +3,14 @@ name: Test dispatch
3
on:
4
workflow_dispatch:
5
jobs:
6
- lint:
+ test:
7
runs-on: ubuntu-latest
8
9
+ - name: Test
10
+ run: echo "Test"
11
12
13
+ needs: test
14
steps:
15
16
0 commit comments