Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CorrM authored Jun 30, 2024
1 parent 9cade1e commit 67590d8
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,18 @@ jobs:
- name: Zip release
run: |
cd ${{env.DOTNET_ROOT}}/LorAuto/
zip -r /LorAuto/release.zip ./*
zip -r ${{env.DOTNET_ROOT}}/LorAuto/release.zip ./*
release:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: LorAuto
path: /LorAuto/release.zip
path: ${{env.DOTNET_ROOT}}/LorAuto/release.zip

- name: Upload Release
uses: ncipollo/release-action@v1
with:
artifacts: /LorAuto/release.zip
artifacts: ${{env.DOTNET_ROOT}}/LorAuto/release.zip
makeLatest: true
generateReleaseNotes: true
draft: false
Expand Down

0 comments on commit 67590d8

Please sign in to comment.