From 6ef8c0850a6bfe16cd61a10eb6c7d3832f9a1a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 17 Feb 2022 15:13:23 +0100 Subject: [PATCH] Autopublish --- .github/workflows/autopublish.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/autopublish.yml diff --git a/.github/workflows/autopublish.yml b/.github/workflows/autopublish.yml new file mode 100644 index 0000000..6b18fdb --- /dev/null +++ b/.github/workflows/autopublish.yml @@ -0,0 +1,20 @@ +name: "AutoPublish" + +on: + push: + branches: + - "master" + +jobs: + auto-publish: + name: "AutoPublish on master" + runs-on: ubuntu-latest + + steps: + - name: "Checkout source code" + uses: "actions/checkout@v2" + - name: "Automated Release" + uses: "jitsi/gh-action-autopublish@master" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}