Skip to content

Commit

Permalink
ci: fix publication workflow (#692)
Browse files Browse the repository at this point in the history
* ci: fix release asset name

* ci: add `continue-on-error` option to `embedded_ui_refresh` event dispatching step
  • Loading branch information
vovaspace authored Jan 31, 2024
1 parent d79fa12 commit 73c155c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
run: |
zip -r $ASSET_NAME.zip build
gh release upload ${{ github.event.release.tag_name }} $ASSET_NAME.zip
mv build /tmp/$ASSET_NAME
zip -r /tmp/$ASSET_NAME.zip /tmp/$ASSET_NAME
gh release upload ${{ github.event.release.tag_name }} /tmp/$ASSET_NAME.zip
- name: Embedded UI Refresh Event Dispatch
uses: peter-evans/repository-dispatch@v2
continue-on-error: true
with:
token: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
repository: ydb-platform/ydb
Expand Down

0 comments on commit 73c155c

Please sign in to comment.