Skip to content

Commit

Permalink
Final release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
configurator committed Apr 29, 2020
1 parent 837788f commit cfdae33
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ jobs:
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: true
release_name: ${{ github.ref }}

- name: Download artifacts
uses: actions/download-artifact@v2
Expand All @@ -85,30 +84,30 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: kubefs-linux-amd64
asset_path: kubefs-linux-amd64/kubefs-linux-amd64
asset_name: kubefs-linux-amd64
asset_content_type: application/x-executable

- name: Upload release assets
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: kubefs-darwin-amd64
asset_path: kubefs-darwin-amd64/kubefs-darwin-amd64
asset_name: kubefs-darwin-amd64
asset_content_type: application/x-mach-executable

- name: Upload release assets
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: kubefs-windows-amd64
asset_name: kubefs-windows-amd64
asset_path: kubefs-windows-amd64.exe/kubefs-windows-amd64.exe
asset_name: kubefs-windows-amd64.exe
asset_content_type: application/vnd.microsoft.portable-executable

- name: Upload release assets
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: kubefs-windows-386
asset_name: kubefs-windows-386
asset_path: kubefs-windows-386.exe/kubefs-windows-386.exe
asset_name: kubefs-windows-386.exe
asset_content_type: application/vnd.microsoft.portable-executable

0 comments on commit cfdae33

Please sign in to comment.