Skip to content

Commit

Permalink
ci: rename steps
Browse files Browse the repository at this point in the history
  • Loading branch information
realybin committed Dec 4, 2024
1 parent 594ee0c commit 2a0ec5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,21 +62,21 @@ jobs:
if: ${{ github.event_name != 'pull_request' }}
run: dotnet tool update -g vpk && vpk pack -u SketchNow -v ${{ env.version }} -p ${{github.workspace}}/.build/publish -e SketchNow.exe -o ${{github.workspace}}/.build/release

- name: Upload artifact for deployment job
- name: Upload Publish artifact for deployment job
if: ${{ github.event_name != 'pull_request' }}
uses: actions/upload-artifact@v4
with:
name: app
name: Publish
path: ${{github.workspace}}/.build/publish

- name: Upload artifact for deployment job
- name: Upload Portable artifact for deployment job
if: ${{ github.event_name != 'pull_request' }}
uses: actions/upload-artifact@v4
with:
name: Portable
path: ${{github.workspace}}/.build/release/SketchNow-win-Portable.zip

- name: Upload artifact for deployment job
- name: Upload Installer artifact for deployment job
if: ${{ github.event_name != 'pull_request' }}
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 2a0ec5c

Please sign in to comment.