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 }}