From 4fa5cf50f7829e65e53d4d63b083d21f65940c06 Mon Sep 17 00:00:00 2001 From: Alex H Date: Thu, 13 Mar 2025 17:16:10 +0100 Subject: [PATCH] ci: Fix publish.yml --- .github/workflows/publish.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4bfd232..337d8b1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,17 +13,19 @@ env: jobs: publish: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 - - name: Setup Node.js - uses: ./.github/actions + - name: Setup Node.js + uses: ./.github/actions - - name: Build - run: npx nx affected -t build --parallel=3 --exclude='*,!tag:type:publish' + - name: Build + run: npx nx affected -t build --parallel=3 --exclude='*,!tag:type:publish' - - name: Publish packages - run: npx nx release publish + - name: Publish packages + run: npx nx release publish