name: Release App on: workflow_dispatch: inputs: version: description: App Version required: true default: 0.0.0 is-draft: description: 'Draft Release?' type: boolean required: true default: true is-pre-release: description: 'Pre Release? (labeled as "PreRelease")' type: boolean required: true default: true permissions: actions: write contents: write security-events: write concurrency: # The concurrency group contains the workflow name and the branch name for # pull requests or the commit hash for any other events. group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} cancel-in-progress: true jobs: before-make: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - name: Install dependencies run: yarn install - name: before-make working-directory: apps/electron run: yarn before-make env: NEXT_PUBLIC_FIREBASE_API_KEY: ${{ secrets.NEXT_PUBLIC_FIREBASE_API_KEY }} NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN: ${{ secrets.NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN }} NEXT_PUBLIC_FIREBASE_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_PROJECT_ID }} NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET: ${{ secrets.NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET }} NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID }} NEXT_PUBLIC_FIREBASE_APP_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_APP_ID }} NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID }} - name: Upload Artifact (web-static) uses: actions/upload-artifact@v3 with: name: before-make-web-static path: apps/electron/resources/web-static - name: Upload Artifact (electron dist) uses: actions/upload-artifact@v3 with: name: before-make-electron-dist path: apps/electron/dist build-macos-x64: needs: before-make runs-on: macos-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 18 - name: Install dependencies run: yarn install # that's right, yarn working-directory: apps/electron - uses: actions/download-artifact@v3 with: name: before-make-web-static path: apps/electron/resources/web-static - uses: actions/download-artifact@v3 with: name: before-make-electron-dist path: apps/electron/dist - name: make build run: yarn make-macos-x64 working-directory: apps/electron - name: Save x64 artifacts run: | mkdir -p builds mv apps/electron/out/make/AFFiNE.dmg ./builds/affine-darwin-x64-${{ github.event.inputs.version }}.dmg - name: Upload Artifact uses: actions/upload-artifact@v3 with: name: affine-darwin-x64-builds path: builds build-macos-arm64: needs: before-make runs-on: macos-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 18 - name: Install dependencies run: yarn install # that's right, yarn working-directory: apps/electron - uses: actions/download-artifact@v3 with: name: before-make-web-static path: apps/electron/resources/web-static - uses: actions/download-artifact@v3 with: name: before-make-electron-dist path: apps/electron/dist - name: make build run: yarn make-macos-arm64 working-directory: apps/electron - name: Save arm64 artifacts run: | mkdir -p builds mv apps/electron/out/make/AFFiNE.dmg ./builds/affine-darwin-arm64-${{ github.event.inputs.version }}.dmg - name: Upload Artifact uses: actions/upload-artifact@v3 with: name: affine-darwin-arm64-builds path: builds build-windows: needs: before-make runs-on: windows-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 18 - name: Install dependencies run: yarn install # that's right, yarn working-directory: apps/electron - uses: actions/download-artifact@v3 with: name: before-make-web-static path: apps/electron/resources/web-static - uses: actions/download-artifact@v3 with: name: before-make-electron-dist path: apps/electron/dist - name: make build run: yarn make-windows-x64 working-directory: apps/electron - name: Save windows artifacts run: | mkdir -p builds mv apps/electron/out/make/zip/win32/x64/AFFiNE-win32-x64-${{ github.event.inputs.version }}.zip ./builds/affine-windows-x64-${{ github.event.inputs.version }}.zip - name: Upload Artifact uses: actions/upload-artifact@v3 with: name: affine-windows-x64-builds path: builds release: needs: [build-macos-x64, build-macos-arm64, build-windows] runs-on: ubuntu-latest steps: - name: Download MacOS x64 Artifacts uses: actions/download-artifact@v3 with: name: affine-darwin-x64-builds path: ./ - name: Download MacOS arm64 Artifacts uses: actions/download-artifact@v3 with: name: affine-darwin-arm64-builds path: ./ - name: Download Windows Artifacts uses: actions/download-artifact@v3 with: name: affine-windows-x64-builds path: ./ - name: Create Release Draft uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: name: Desktop APP ${{ github.event.inputs.version }} body: 'TODO: Add release notes here' draft: ${{ github.event.inputs.is-draft }} prerelease: ${{ github.event.inputs.is-pre-release }} files: | ./VERSION ./*.zip ./*.dmg ./*.exe ./*.nupkg ./RELEASES ./*.AppImage ./*.apk