Skip to content

Commit f31ffcb

Browse files
authored
Merge pull request #12 from pddg/fix
fix
2 parents 4a75458 + 1a38d4b commit f31ffcb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,14 @@ jobs:
4040
needs: build
4141
runs-on: ubuntu-latest
4242
steps:
43+
- uses: actions/checkout@v2
4344
- uses: actions/download-artifact@v2
4445
with:
4546
name: alfredworkflow
47+
path: dist/
4648
- name: Following artifacts will be published
4749
run: |
48-
ls -l *.alfredworkflow
50+
ls -l dist/*.alfredworkflow
4951
- name: Publish
5052
if: ${{ github.event_name != 'pull_request' }}
5153
run: |
@@ -56,5 +58,5 @@ jobs:
5658
else
5759
git tag ${TAG}
5860
git push --tags
59-
gh release create ${TAG} -n "${TAG}" ./*.alfredworkflow
61+
gh release create ${TAG} -n "${TAG}" dist/*.alfredworkflow
6062
fi

0 commit comments

Comments
 (0)