Skip to content

Commit

Permalink
feat: Add name to jobs
Browse files Browse the repository at this point in the history
Adds name to workflow jobs to increase readability

Signed-off-by: Lincoln Wallace <[email protected]>
  • Loading branch information
locnnil committed Dec 7, 2023
1 parent e3c2f41 commit c95fed2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build-snap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,17 @@ jobs:
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 }}
Expand Down

0 comments on commit c95fed2

Please sign in to comment.