Skip to content

Commit

Permalink
ci: Fix path for artifact creation and upload
Browse files Browse the repository at this point in the history
  • Loading branch information
zachowj committed Apr 4, 2024
1 parent bd7dd6b commit 674e49a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
- name: Create zip
if: ${{ steps.release.outputs.release_created }}
run: |
cd ${{ github.workspace }}/custom_components/nodered
cd ./custom_components/nodered
zip nodered.zip -r ./
- name: Upload release
if: ${{ steps.release.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ steps.release.outputs.release_tag }} ${{ github.workspace }}/custom_components/nodered/nodered.zip
run: gh release upload ${{ steps.release.outputs.release_tag }} ./custom_components/nodered/nodered.zip

# tests:
# runs-on: "ubuntu-latest"
Expand Down

0 comments on commit 674e49a

Please sign in to comment.