Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,28 @@ jobs:
name: wails-${{ matrix.os }}
path: build/bin/**
retention-days: 14

release:
name: Create Release
needs: build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
permissions:
contents: write

steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts

- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
artifacts/wails-ubuntu-latest/*
artifacts/wails-windows-latest/*
artifacts/wails-macos-latest/*
draft: false
prerelease: false
generate_release_notes: true
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,28 @@ jobs:
name: wails-${{ matrix.os }}
path: build/bin/**
retention-days: 14

release:
name: Create Release
needs: build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
permissions:
contents: write

steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts

- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
artifacts/wails-ubuntu-latest/*
artifacts/wails-windows-latest/*
artifacts/wails-macos-latest/*
draft: false
prerelease: false
generate_release_notes: true
Loading