From a9760c8d78ec53c44f502a9c287630cbe5a33e7c Mon Sep 17 00:00:00 2001 From: Thomas Skerbis Date: Tue, 28 Dec 2021 13:09:25 +0100 Subject: [PATCH] Installer action (#55) --- .github/workflows/publish-to-redaxo.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/publish-to-redaxo.yml diff --git a/.github/workflows/publish-to-redaxo.yml b/.github/workflows/publish-to-redaxo.yml new file mode 100644 index 0000000..23ce334 --- /dev/null +++ b/.github/workflows/publish-to-redaxo.yml @@ -0,0 +1,18 @@ +name: Publish release + +on: + release: + types: + - published + +jobs: + redaxo_publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: FriendsOfREDAXO/installer-action@v1 + with: + myredaxo-username: ${{ secrets.MYREDAXO_USERNAME }} + myredaxo-api-key: ${{ secrets.MYREDAXO_API_KEY }} + description: ${{ github.event.release.body }} +