From 255f8a0dd358470671d64b015057056349e17bd4 Mon Sep 17 00:00:00 2001 From: Thomas Skerbis Date: Sun, 9 Jan 2022 21:48:01 +0100 Subject: [PATCH] add installer action --- .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 }} +