Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MattJeanes authored May 31, 2020
1 parent f51cca4 commit ce52255
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,16 @@ jobs:
run: dotnet publish ./TeslaMateAgile/TeslaMateAgile.csproj --output ./output/TeslaMateAgile

- name: Zip project
run: zip -r ./output/TeslaMateAgile.zip ./output/TeslaMateAgile
run: |
cd ./output/TeslaMateAgile
zip -r ../TeslaMateAgile.zip .
cd ../../
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
with:
name: TeslaMateAgile
path: ./output/TeslaMateAgile.zip
path: ./output/TeslaMateAgile

- name: Create Release
id: create_release
Expand Down

0 comments on commit ce52255

Please sign in to comment.