Skip to content

Commit 73c155c

Browse files
authored
ci: fix publication workflow (#692)
* ci: fix release asset name * ci: add `continue-on-error` option to `embedded_ui_refresh` event dispatching step
1 parent d79fa12 commit 73c155c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/publication.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ jobs:
2424
env:
2525
GITHUB_TOKEN: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
2626
run: |
27-
zip -r $ASSET_NAME.zip build
28-
gh release upload ${{ github.event.release.tag_name }} $ASSET_NAME.zip
27+
mv build /tmp/$ASSET_NAME
28+
zip -r /tmp/$ASSET_NAME.zip /tmp/$ASSET_NAME
29+
gh release upload ${{ github.event.release.tag_name }} /tmp/$ASSET_NAME.zip
2930
- name: Embedded UI Refresh Event Dispatch
3031
uses: peter-evans/repository-dispatch@v2
32+
continue-on-error: true
3133
with:
3234
token: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
3335
repository: ydb-platform/ydb

0 commit comments

Comments
 (0)