Skip to content

Commit

Permalink
Issue #92: More accurate CI step description
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Detwiler <[email protected]>
  • Loading branch information
detwiler committed Dec 30, 2020
1 parent 64851d6 commit b71aeab
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,11 @@ jobs:
- name: Configure Version
run: echo "PROJECT_VERSION=`cat .version`" >>$GITHUB_ENV

- name: Upload Distribution Artifact
- name: Upload Distribution Artifacts
uses: actions/upload-artifact@v2
with:
name: distribution-tarball
name: distribution-artifacts
if-no-files-found: error
path: |
envconf-${{ env.PROJECT_VERSION }}.tar.gz
.version
Expand All @@ -88,10 +89,10 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')

steps:
- name: Download Distribution Artifact
- name: Download Distribution Artifacts
uses: actions/download-artifact@v2
with:
name: distribution-tarball
name: distribution-artifacts

- name: Configure Version
run: echo "PROJECT_VERSION=`cat .version`" >>$GITHUB_ENV
Expand Down

0 comments on commit b71aeab

Please sign in to comment.