mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-19 22:34:36 +01:00
Co-authored-by: Michael Neale <michael.neale@gmail.com> Co-authored-by: Wendy Tang <wendytang@squareup.com> Co-authored-by: Jarrod Sibbison <72240382+jsibbison-square@users.noreply.github.com> Co-authored-by: Alex Hancock <alex.hancock@example.com> Co-authored-by: Alex Hancock <alexhancock@block.xyz> Co-authored-by: Lifei Zhou <lifei@squareup.com> Co-authored-by: Wes <141185334+wesrblock@users.noreply.github.com> Co-authored-by: Max Novich <maksymstepanenko1990@gmail.com> Co-authored-by: Zaki Ali <zaki@squareup.com> Co-authored-by: Salman Mohammed <smohammed@squareup.com> Co-authored-by: Kalvin C <kalvinnchau@users.noreply.github.com> Co-authored-by: Alec Thomas <alec@swapoff.org> Co-authored-by: lily-de <119957291+lily-de@users.noreply.github.com> Co-authored-by: kalvinnchau <kalvin@block.xyz> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Rizel Scarlett <rizel@squareup.com> Co-authored-by: bwrage <bwrage@squareup.com> Co-authored-by: Kalvin Chau <kalvin@squareup.com> Co-authored-by: Alice Hau <110418948+ahau-square@users.noreply.github.com> Co-authored-by: Alistair Gray <ajgray@stripe.com> Co-authored-by: Nahiyan Khan <nahiyan.khan@gmail.com> Co-authored-by: Alex Hancock <alexhancock@squareup.com> Co-authored-by: Nahiyan Khan <nahiyan@squareup.com> Co-authored-by: marcelle <1852848+laanak08@users.noreply.github.com> Co-authored-by: Yingjie He <yingjiehe@block.xyz> Co-authored-by: Yingjie He <yingjiehe@squareup.com> Co-authored-by: Lily Delalande <ldelalande@block.xyz> Co-authored-by: Adewale Abati <acekyd01@gmail.com> Co-authored-by: Ebony Louis <ebony774@gmail.com> Co-authored-by: Angie Jones <jones.angie@gmail.com> Co-authored-by: Ebony Louis <55366651+EbonyLouis@users.noreply.github.com>
77 lines
2.7 KiB
YAML
77 lines
2.7 KiB
YAML
# This workflow is triggered by a comment on an issue or PR with the text ".bundle"
|
|
# It bundles the Desktop App, then creates a PR comment with a link to download the app.
|
|
|
|
# IMPORTANT: issue_comment workflows only use files found on "main" branch to run.
|
|
# Do NOT allow on: pull_request since that allows a user to alter a file in a PR and exfil secrets for example.
|
|
# Only using issue_comment is the suggested workflow type. Comments on pull requests, and issues will trigger the issue_comment workflow event.
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
# permissions needed for reacting to IssueOps commands on PRs
|
|
permissions:
|
|
pull-requests: write
|
|
checks: read
|
|
# issues: write
|
|
|
|
name: Workflow to Bundle Desktop App
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
trigger-on-command:
|
|
name: Trigger on ".bundle" PR comment
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: github/command@v1.3.0
|
|
id: command
|
|
with:
|
|
command: ".bundle"
|
|
reaction: "eyes"
|
|
allowed_contexts: pull_request
|
|
|
|
bundle-desktop:
|
|
# Only run this if ".bundle" command is detected.
|
|
if: ${{ steps.command.outputs.continue == 'true' }}
|
|
uses: ./.github/workflows/bundle-desktop.yml
|
|
with:
|
|
signing: true
|
|
secrets:
|
|
CERTIFICATE_OSX_APPLICATION: ${{ secrets.CERTIFICATE_OSX_APPLICATION }}
|
|
CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }}
|
|
APPLE_ID: ${{ secrets.APPLE_ID }}
|
|
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
|
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
|
|
|
|
pr-comment:
|
|
name: PR Comment with Desktop App
|
|
runs-on: ubuntu-latest
|
|
needs: [ bundle-desktop ]
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Download all artifacts
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
merge-multiple: true
|
|
|
|
- name: Comment on PR with download link
|
|
uses: peter-evans/create-or-update-comment@v3
|
|
with:
|
|
comment-id: ${{ steps.command.outputs.comment_id }}
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
body: |
|
|
### Desktop App for this PR
|
|
|
|
The following build is available for testing:
|
|
|
|
- [📱 macOS Desktop App (arm64, signed)](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/Goose-darwin-arm64.zip)
|
|
|
|
After downloading, unzip the file and drag the Goose.app to your Applications folder. The app is signed and notarized for macOS.
|
|
|
|
This link is provided by nightly.link and will work even if you're not logged into GitHub.
|
|
edit-mode: replace
|