From 856a4e089909dc438f3a2b8eaa42c9678cb6e7b3 Mon Sep 17 00:00:00 2001 From: Thomas Skerbis Date: Tue, 30 Nov 2021 16:28:58 +0100 Subject: [PATCH] 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..b690438 --- /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@1.0.0 + with: + myredaxo-username: ${{ secrets.MYREDAXO_USERNAME }} + myredaxo-api-key: ${{ secrets.MYREDAXO_API_KEY }} + description: ${{ github.event.release.body }} +