From 7e78b48354458ec8b4022d403e38bc3c3d2de311 Mon Sep 17 00:00:00 2001 From: "Lincoln Wallace V. Almeida" Date: Thu, 7 Dec 2023 17:43:46 -0300 Subject: [PATCH] feat: Add name to jobs running in actions (#29) --- .github/workflows/build-snap.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-snap.yml b/.github/workflows/build-snap.yml index 9ef6285..b383201 100644 --- a/.github/workflows/build-snap.yml +++ b/.github/workflows/build-snap.yml @@ -13,15 +13,15 @@ jobs: runs-on: ubuntu-latest steps: - # Checkout the code - - uses: actions/checkout@v4 + - name: Checkout code + uses: actions/checkout@v4 - # Build the snap - - uses: snapcore/action-build@v1 + - name: Build snap + uses: snapcore/action-build@v1 id: build - # Upload the built artifact - - uses: actions/upload-artifact@v3 + - name: Upload artifact + uses: actions/upload-artifact@v3 with: name: ${{ steps.build.outputs.snap }} path: ${{ steps.build.outputs.snap }}