Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
ianlapham committed Dec 11, 2019
1 parent 4d87cc2 commit 4ad3f74
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/total.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@master
# - name: Build project # This would actually build your project, using zip for an example artifact
# run: |
# npm install
# npm run build
- name: Build project # This would actually build your project, using zip for an example artifact
run: |
npm install
npm run build
- name: Create Release
id: create_release
uses: actions/create-release@v1.0.0
Expand All @@ -31,7 +31,7 @@ jobs:
uses: thedoctor0/zip-release@master
with:
filename: 'build.zip'
path: './src'
path: './build'
exclusions: '*.git* /*node_modules/* .editorconfig'
- name: Upload Release Assets
id: upload-release-asset
Expand All @@ -41,7 +41,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: build.zip
asset_name: build
asset_name: build.zip
asset_content_type: application/zip
# name: 'Prebuilt release'

Expand Down

0 comments on commit 4ad3f74

Please sign in to comment.