Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
parthpetkar authored Jul 12, 2024
1 parent c384b64 commit e13c961
Showing 1 changed file with 3 additions and 30 deletions.
33 changes: 3 additions & 30 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Release
name: Build

on: [push, pull_request]

Expand All @@ -14,37 +14,10 @@ jobs:
run: npm install
- name: Build
run: npm run make
- name: List files for debugging
run: ls -R out/make/squirrel.windows/x64/
- name: Archive Artifact
uses: actions/upload-artifact@v2
with:
name: electron-build-win
path: out/make/squirrel.windows/x64/invoice_gen-1.0.0 Setup.exe

publish_release:
needs: build_on_win
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: electron-build-win
path: build/
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
with:
tag_name: v1.0.0
release_name: Release v1.0.0
draft: false
prerelease: false
- name: Upload Release Asset (Windows)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: out/make/squirrel.windows/x64/invoice_gen-1.0.0 Setup.exe
asset_name: invoice_gen-1.0.0-setup-win.exe
asset_content_type: application/octet-stream

0 comments on commit e13c961

Please sign in to comment.