From b3995653ee1322d26f95166dc208c0d09647e983 Mon Sep 17 00:00:00 2001 From: Severin Ibarluzea Date: Wed, 10 Jan 2024 12:49:24 -0800 Subject: [PATCH] run build binaries --- .github/workflows/build-and-release.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 3bcdbdc..460e70a 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -20,16 +20,13 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v2 with: - node-version: "18" + node-version: "20" - name: Install dependencies run: npm install env: NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} - - name: Install pkg - run: npm install -g pkg - - name: Build the project run: npm run build @@ -39,9 +36,6 @@ jobs: - name: Get the version tag run: echo "VERSION_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV - - name: Dry Run - Print the release version - run: echo "Dry Run - Release version ${{ env.VERSION_TAG }}" - - name: Create Release if: github.ref == 'refs/heads/main' uses: actions/create-release@v1