* Separated build macos arm64 and x86_x64 * Update dependencies jobs name * Remove arch from electron-builder command for mac * Add combine latest-mac.yml jobs * Remove unuse workflow job * Add prefix to install js-yaml * Run merge script from /tmp * workflow update release draft depend on combile-latest-mac * correct template path * upload assert release latest-mac.yml overwrite set to true * upload assert release latest-mac.yml overwrite set to true * Grant permission for combine latest-mac jobs --------- Co-authored-by: Hien To <hien@jan.ai>
140 lines
4.8 KiB
YAML
140 lines
4.8 KiB
YAML
name: Jan Build Electron App
|
|
|
|
on:
|
|
push:
|
|
tags: ["v[0-9]+.[0-9]+.[0-9]+"]
|
|
|
|
jobs:
|
|
# Job create Update app version based on latest release tag with build number and save to output
|
|
get-update-version:
|
|
uses: ./.github/workflows/template-get-update-version.yml
|
|
|
|
create-draft-release:
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
|
outputs:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
version: ${{ steps.get_version.outputs.version }}
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Extract tag name without v prefix
|
|
id: get_version
|
|
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV && echo "::set-output name=version::${GITHUB_REF#refs/tags/v}"
|
|
env:
|
|
GITHUB_REF: ${{ github.ref }}
|
|
- name: Create Draft Release
|
|
id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ github.ref_name }}
|
|
release_name: "${{ env.VERSION }}"
|
|
draft: true
|
|
prerelease: false
|
|
|
|
build-macos-x64:
|
|
uses: ./.github/workflows/template-build-macos-x64.yml
|
|
secrets: inherit
|
|
needs: [get-update-version]
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
public_provider: github
|
|
new_version: ${{ needs.get-update-version.outputs.new_version }}
|
|
|
|
build-macos-arm64:
|
|
uses: ./.github/workflows/template-build-macos-arm64.yml
|
|
secrets: inherit
|
|
needs: [get-update-version]
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
public_provider: github
|
|
new_version: ${{ needs.get-update-version.outputs.new_version }}
|
|
|
|
build-windows-x64:
|
|
uses: ./.github/workflows/template-build-windows-x64.yml
|
|
secrets: inherit
|
|
needs: [get-update-version]
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
public_provider: github
|
|
new_version: ${{ needs.get-update-version.outputs.new_version }}
|
|
|
|
build-linux-x64:
|
|
uses: ./.github/workflows/template-build-linux-x64.yml
|
|
secrets: inherit
|
|
needs: [get-update-version]
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
public_provider: github
|
|
new_version: ${{ needs.get-update-version.outputs.new_version }}
|
|
|
|
combine-latest-mac-yml:
|
|
needs: [build-macos-x64, build-macos-arm64, create-draft-release]
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Getting the repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Download mac-x64 artifacts
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: latest-mac-x64
|
|
path: ./latest-mac-x64
|
|
- name: Download mac-arm artifacts
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: latest-mac-arm64
|
|
path: ./latest-mac-arm64
|
|
|
|
- name: 'Merge latest-mac.yml'
|
|
# unfortunately electron-builder doesn't understand that we have two different releases for mac-x64 and mac-arm, so we need to manually merge the latest files
|
|
# see https://github.com/electron-userland/electron-builder/issues/5592
|
|
run: |
|
|
ls -la .
|
|
ls -la ./latest-mac-x64
|
|
ls -la ./latest-mac-arm64
|
|
ls -la ./electron
|
|
cp ./electron/merge-latest-ymls.js /tmp/merge-latest-ymls.js
|
|
npm install js-yaml --prefix /tmp
|
|
node /tmp/merge-latest-ymls.js ./latest-mac-x64/latest-mac.yml ./latest-mac-arm64/latest-mac.yml ./latest-mac.yml
|
|
cat ./latest-mac.yml
|
|
|
|
- name: Yet Another Upload Release Asset Action
|
|
uses: shogo82148/actions-upload-release-asset@v1.7.2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ needs.create-draft-release.outputs.upload_url }}
|
|
asset_path: ./latest-mac.yml
|
|
asset_name: latest-mac.yml
|
|
asset_content_type: text/yaml
|
|
overwrite: true
|
|
|
|
update_release_draft:
|
|
needs: [build-macos-x64, build-macos-arm64, build-windows-x64, build-linux-x64, combine-latest-mac-yml]
|
|
permissions:
|
|
# write permission is required to create a github release
|
|
contents: write
|
|
# write permission is required for autolabeler
|
|
# otherwise, read permission is required at least
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# (Optional) GitHub Enterprise requires GHE_HOST variable set
|
|
#- name: Set GHE_HOST
|
|
# run: |
|
|
# echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV
|
|
|
|
# Drafts your next Release notes as Pull Requests are merged into "master"
|
|
- uses: release-drafter/release-drafter@v5
|
|
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
|
|
# with:
|
|
# config-name: my-config.yml
|
|
# disable-autolabeler: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|