Skip to content

Commit

Permalink
ci: use svenstaro/upload-release-action@v2
Browse files Browse the repository at this point in the history
  • Loading branch information
SevereCloud committed Nov 9, 2020
1 parent 3b789a4 commit 58cc8a3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,11 @@ jobs:
body:
draft: false
prerelease: false
- uses: AButler/[email protected]
- name: Upload files
uses: svenstaro/upload-release-action@v2
with:
files: 'build/*'
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ github.ref }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true

2 comments on commit 58cc8a3

@vitalyavolyn
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Приветик! Можно, кстати, вообще без сторонних экшнов - в контейнерах есть GitHub CLI
пример: danyadev/vk-desktop@07b9cea

@SevereCloud
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Привет, спасибо сделал без svenstaro/upload-release-action@v2

Please sign in to comment.