From 910fa94f37d9c54a5016fbf892071fb2311b6282 Mon Sep 17 00:00:00 2001 From: Milos Djermanovic Date: Tue, 21 Jun 2022 17:59:23 +0200 Subject: [PATCH] chore: add deploy workflow for playground Fixes eslint/new.eslint.org#233 --- .github/workflows/playground-deploy.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/playground-deploy.yml diff --git a/.github/workflows/playground-deploy.yml b/.github/workflows/playground-deploy.yml new file mode 100644 index 00000000000..56606da91f8 --- /dev/null +++ b/.github/workflows/playground-deploy.yml @@ -0,0 +1,13 @@ +name: 'Playground Deploy' + +on: + release: + types: ['published'] + +jobs: + deploy: + name: 'Deploy' + runs-on: ubuntu-latest + + steps: + - run: curl -X POST -d {} ${{ secrets.NETLIFY_PLAYGROUND_BUILD_HOOK }}