-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b94c759
commit bafa4ed
Showing
1 changed file
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,21 +41,21 @@ jobs: | |
name: rudget-${{ matrix.target }} | ||
path: ./target/${{ matrix.target }}/release/* | ||
|
||
# release: | ||
# needs: build | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Download artifacts | ||
# uses: actions/download-artifact@v2 | ||
# with: | ||
# path: ./artifacts/ | ||
release: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v2 | ||
with: | ||
path: ./artifacts/ | ||
|
||
# - name: Create GitHub Release | ||
# uses: gh-actions/[email protected] | ||
# with: | ||
# api_key: ${{ secrets.GITHUB_TOKEN }} | ||
# name: Release ${{ github.ref }} | ||
# tag_name: ${{ github.ref }} | ||
# file: ./artifacts/* | ||
# overwrite: true | ||
- name: Create GitHub Release | ||
uses: gh-actions/[email protected] | ||
with: | ||
api_key: ${{ secrets.GITHUB_TOKEN }} | ||
name: Release ${{ github.ref }} | ||
tag_name: ${{ github.ref }} | ||
file: ./artifacts/* | ||
overwrite: true | ||
|