We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d79fa12 commit 73c155cCopy full SHA for 73c155c
.github/workflows/publication.yml
@@ -24,10 +24,12 @@ jobs:
24
env:
25
GITHUB_TOKEN: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
26
run: |
27
- zip -r $ASSET_NAME.zip build
28
- 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
29
+ gh release upload ${{ github.event.release.tag_name }} /tmp/$ASSET_NAME.zip
30
- name: Embedded UI Refresh Event Dispatch
31
uses: peter-evans/repository-dispatch@v2
32
+ continue-on-error: true
33
with:
34
token: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
35
repository: ydb-platform/ydb
0 commit comments