From 720d527c8193d4c90c1306cf28ba184d80c95a22 Mon Sep 17 00:00:00 2001 From: nilesh-simform Date: Mon, 1 Apr 2024 13:29:19 +0530 Subject: [PATCH] fix: UNT-T23775: Update publish workflow --- .github/workflows /publish.yml | 23 ----------------------- .github/workflows/publish.yml | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+), 23 deletions(-) delete mode 100644 .github/workflows /publish.yml create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows /publish.yml b/.github/workflows /publish.yml deleted file mode 100644 index 0449ebf..0000000 --- a/.github/workflows /publish.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: '🚀 Publish' - -on: - push: - branches: - - master - -jobs: - release: - name: 🚀 Publish - runs-on: macos-11 - steps: - - name: 📚 checkout - uses: actions/checkout@v2.4.2 - - name: 🟢 node - uses: actions/setup-node@v3.3.0 - with: - node-version: 16 - registry-url: https://registry.npmjs.org - - name: 🚀 Build & Publish - run: yarn install && yarn build && yarn publish --access public - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..299afe0 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,23 @@ +name: "🚀 Publish" + +on: + push: + branches: + - master + +jobs: + release: + name: 🚀 Publish + runs-on: macos-11 + steps: + - name: 📚 checkout + uses: actions/checkout@v2.4.2 + - name: 🟢 node + uses: actions/setup-node@v3.3.0 + with: + node-version: 16 + registry-url: https://registry.npmjs.org + - name: 🚀 Build & Publish + run: yarn install && yarn build && yarn publish --access public + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} \ No newline at end of file