Skip to content

Commit

Permalink
github: fix github action for automatic release
Browse files Browse the repository at this point in the history
documentaiton path was invalid in github action

Signed-off-by: Robert Gałat <[email protected]>
  • Loading branch information
RobertGalatNordic committed Mar 22, 2023
1 parent d3880f3 commit 385bf53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tag_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: cd sidewalk/doc; ./build_local.sh && zip -r documentation.zip build/html/*
run: cd doc; ./build_local.sh && zip -r documentation.zip build/html/*

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: sidewalk/doc/documentation.zip
file: doc/documentation.zip
asset_name: documentation.zip
tag: ${{ github.ref }}
overwrite: true
Expand Down

0 comments on commit 385bf53

Please sign in to comment.