File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -118,5 +118,29 @@ jobs:
118118
119119 - name : Benchmarking
120120 run : phpbench run tests/webfiori/benchmark --report=default
121+ release_staging :
122+ needs :
123+ - " test"
124+ - " coding_standards_check"
125+ runs-on : ubuntu-latest
126+ if : github.ref == 'refs/heads/dev'
127+ steps :
128+ - uses : actions/checkout@v4
129+ - uses : google-github-actions/release-please-action@v3
130+ with :
131+ release-type : pre-release
132+ token : ${{ secrets.GITHUB_TOKEN }}
133+ release_prod :
134+ needs :
135+ - " test"
136+ - " coding_standards_check"
137+ runs-on : ubuntu-latest
138+ if : github.ref == 'refs/heads/master'
139+ steps :
140+ - uses : actions/checkout@v4
141+ - uses : google-github-actions/release-please-action@v3
142+ with :
143+ release-type : php
144+ token : ${{ secrets.GITHUB_TOKEN }}
121145
122146
You can’t perform that action at this time.
0 commit comments