We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d73d37f + cb796fb commit c347b43Copy full SHA for c347b43
.github/workflows/release.yml
@@ -21,7 +21,7 @@ on:
21
22
jobs:
23
jobA:
24
- name: Linux
+ name: version
25
runs-on: ubuntu-latest
26
if: github.event.inputs.tag != '' && github.event.inputs.change != ''
27
steps:
@@ -37,6 +37,7 @@ jobs:
37
git push
38
jobB:
39
name: createPr
40
+ needs: version
41
42
env:
43
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -48,6 +49,7 @@ jobs:
48
49
gh pr create -B main --title 'Merge release${{ github.event.inputs.tag }} into main' --body 'Created by Github action'
50
linux:
51
name: Linux
52
+ needs: createPr
53
54
timeout-minutes: 30
55
if: ${{ github.event.inputs.market }}
0 commit comments