From 80bcfdf3231fc00eafb311fc8a1c0a23b0c74f6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Jovan=C3=AD=20Gonz=C3=A1lez?= <12443324+drackp2m@users.noreply.github.com> Date: Sun, 3 Nov 2024 22:59:46 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20remove=20release=20from?= =?UTF-8?q?=20deploy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b46c62d1..2c18637a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -66,41 +66,6 @@ jobs: with: path: './dist/apps/app/browser' - release: - runs-on: ubuntu-latest - needs: build - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '22.9' - cache: 'npm' - - - name: Install dependencies - run: npm ci - - - name: Import GPG key - env: - GPG_PRIVATE_KEY: ${{ secrets.SEMANTIC_RELEASE_GPG_PRIVATE_KEY }} - run: | - echo "$GPG_PRIVATE_KEY" > private.key - gpg --batch --import private.key - git config --global user.name "drackp2m-semantic-release-bot" - git config --global user.email "187212958+drackp2m-semantic-release-bot@users.noreply.github.com" - git config --global commit.gpgSign true - git config --global user.signingkey 89AE9225AE159D89 - echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf - echo "pinentry-mode loopback" >> ~/.gnupg/gpg.conf - gpgconf --kill gpg-agent - - - name: Run semantic-release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: node --run release - deploy: environment: name: github-pages