Skip to content

Commit

Permalink
update release workflow to include styles
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpetro committed Jan 4, 2023
1 parent 5cb269c commit ed825e3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,15 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./manifest.json
asset_name: manifest.json
asset_content_type: application/json
asset_content_type: application/json

- name: Upload styles.css
id: upload-styles
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./styles.css
asset_name: styles.css
asset_content_type: text/css

0 comments on commit ed825e3

Please sign in to comment.