Skip to content

Commit

Permalink
Create publish-to-redaxo.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndr-w authored Dec 15, 2023
1 parent 0c8dcfe commit 0704265
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/publish-to-redaxo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish release

on:
release:
types:
- published

jobs:
redaxo_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: "8.2"
- uses: ramsey/composer-install@v2
with:
composer-options: "--no-dev"
- uses: FriendsOfREDAXO/installer-action@v1
with:
myredaxo-username: ${{ secrets.MYREDAXO_USERNAME }}
myredaxo-api-key: ${{ secrets.MYREDAXO_API_KEY }}
description: ${{ github.event.release.body }}

0 comments on commit 0704265

Please sign in to comment.