From 881421b7152209b842bc44cc57629f533d3f72c8 Mon Sep 17 00:00:00 2001 From: Thomas Skerbis Date: Mon, 3 Feb 2025 11:53:19 +0100 Subject: [PATCH] Create publish-to-redaxo.yml --- .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..3da6aa8 --- /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@v3 + - uses: FriendsOfREDAXO/installer-action@v1 + with: + myredaxo-username: ${{ secrets.MYREDAXO_USERNAME }} + myredaxo-api-key: ${{ secrets.MYREDAXO_API_KEY }} + description: ${{ github.event.release.body }} +