From a14c54882cd3fc88513b8ef42e03d10e59a34814 Mon Sep 17 00:00:00 2001 From: hashcookie Date: Sun, 26 May 2024 23:04:55 +0800 Subject: [PATCH] feat: Add GitHub Actions workflow for building and releasing Electron app --- .github/workflows/release.yml | 60 +++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..0766d5d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,60 @@ +name: Build and Release Electron App + +on: + push: + tags: + - 'v*.*.*' + +jobs: + build: + runs-on: macos-latest + steps: + - name: Check out code + uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: '18' + + - name: Install dependencies + run: yarn install + + - name: Build Electron app + run: yarn dist + + - name: Upload build artifacts + uses: actions/upload-artifact@v2 + with: + name: electron-app-macos + path: dist/ + + release: + needs: build + runs-on: ubuntu-latest + steps: + - name: Download macOS build artifacts + uses: actions/download-artifact@v2 + with: + name: electron-app-macos + + - name: Create GitHub Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + draft: false + prerelease: false + + - name: Upload Release Assets + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: dist/ + asset_name: casbin-editor-macos.zip + asset_content_type: application/zip