Skip to content

Commit

Permalink
chore: Added Release Please to Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
usernane committed Nov 20, 2024
1 parent cf06f4f commit 6da66a3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/php83.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,29 @@ jobs:

- name: Benchmarking
run: phpbench run tests/webfiori/benchmark --report=default
release_staging:
needs:
- "test"
- "coding_standards_check"
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/dev'
steps:
- uses: actions/checkout@v4
- uses: google-github-actions/release-please-action@v3
with:
release-type: pre-release
token: ${{ secrets.GITHUB_TOKEN }}
release_prod:
needs:
- "test"
- "coding_standards_check"
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- uses: google-github-actions/release-please-action@v3
with:
release-type: php
token: ${{ secrets.GITHUB_TOKEN }}


0 comments on commit 6da66a3

Please sign in to comment.