We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10f0779 commit 1997955Copy full SHA for 1997955
.github/workflows/publish-to-redaxo-org.yml
@@ -0,0 +1,27 @@
1
+# Instructions: https://github.com/FriendsOfREDAXO/installer-action/
2
+
3
+name: Publish to REDAXO.org
4
+on:
5
+ release:
6
+ types:
7
+ - published
8
9
+jobs:
10
+ redaxo_publish:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - if: hashFiles('composer.json') != ''
15
+ uses: shivammathur/setup-php@v2
16
+ with:
17
+ php-version: "8.2"
18
19
+ uses: ramsey/composer-install@v2
20
21
+ composer-options: "--no-dev"
22
+ - uses: FriendsOfREDAXO/installer-action@v1
23
24
+ myredaxo-username: ${{ secrets.MYREDAXO_USERNAME }}
25
+ myredaxo-api-key: ${{ secrets.MYREDAXO_API_KEY }}
26
+ description: ${{ github.event.release.body }}
27
+ version: ${{ github.event.release.tag_name }}
0 commit comments