From 6b3a45e47ffaf032b0e948c355273cf0df38e08a Mon Sep 17 00:00:00 2001 From: frankpagan Date: Mon, 18 Sep 2023 19:11:16 -0600 Subject: [PATCH] removed upload --- .github/workflows/automated.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/automated.yml b/.github/workflows/automated.yml index a47959a..c8ea0ff 100644 --- a/.github/workflows/automated.yml +++ b/.github/workflows/automated.yml @@ -41,30 +41,4 @@ jobs: outputs: new_release_published: "${{ steps.semantic.outputs.new_release_published }}" new_release_version: "${{ steps.semantic.outputs.new_release_version }}" - upload: - runs-on: ubuntu-latest - needs: release - if: needs.release.outputs.new_release_published == 'true' - env: - VERSION: "${{ needs.release.outputs.new_release_version }}" - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: 16 - - name: Set npm registry auth - run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc - - name: Install dependencies - run: yarn install - - name: Build - run: yarn build - - name: Set Environment Variables - run: | - echo "organization_id=${{ secrets.COCREATE_ORGANIZATION_ID }}" >> $GITHUB_ENV - echo "key=${{ secrets.COCREATE_KEY }}" >> $GITHUB_ENV - echo "host=${{ secrets.COCREATE_HOST }}" >> $GITHUB_ENV - - name: CoCreate Upload - run: coc upload