From 4456d9a8027fb8aee9a4684943ce1c837ed3ed9a Mon Sep 17 00:00:00 2001 From: Omar Olivares Urrutia Date: Fri, 29 Mar 2024 04:23:26 -0300 Subject: [PATCH] Refactor CI workflow to use 'build' job instead of 'pre-release' job --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0764c52..5d99611 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,14 +10,14 @@ on: workflow_dispatch: jobs: - pre-release: - name: "Pre Release" - runs-on: "ubuntu-latest" + build: + runs-on: ubuntu-latest steps: - - name: "Build" + - uses: actions/checkout@v2 + - name: Run run: | - make + make all - uses: marvinpinto/action-automatic-releases@latest with: