Skip to content

Commit

Permalink
Update workflow to post the spec file
Browse files Browse the repository at this point in the history
  • Loading branch information
morrone committed Dec 1, 2022
1 parent 454a9fc commit 31fd377
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
- name: Upload Tarball
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
Expand All @@ -47,3 +47,12 @@ jobs:
asset_path: ./${{ env.TARBALL_NAME }}
asset_name: ${{ env.TARBALL_NAME }}
asset_content_type: application/gzip
- name: Upload TOSS Spec File
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./libyogrt.spec
asset_name: libyogrt.spec
asset_content_type: text/plain

0 comments on commit 31fd377

Please sign in to comment.