Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release betas for screenpipe #1440

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
20 changes: 20 additions & 0 deletions .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,26 @@ jobs:
api-key: ${{ secrets.CN_API_KEY }}
path: ./screenpipe-app-tauri/src-tauri

- name: Set short git commit SHA
id: vars
run: |
calculatedSha=$(git rev-parse --short ${{ github.sha }})
echo "COMMIT_SHORT_SHA=$calculatedSha" >> $GITHUB_ENV

- uses: ncipollo/release-action@v1
with:
allowUpdates: true
prerelease: true
name: "Screenpipe Beta ${{ env.COMMIT_SHORT_SHA }}"
updateOnlyUnreleased: true
artifacts: "release.tar.gz,foo/*.txt"
artfiacts: >
"screenpipe-app-tauri/src-tauri/target/x86_64-pc-windows-msvc/release/bundle/nsis/*.exe,
screenpipe-app-tauri/src-tauri/target/x86_64-apple-darwin/release/bundle/macos/*.app.tar.gz,
screenpipe-app-tauri/src-tauri/target/x86_64-apple-darwin/release/bundle/macos/*.dmg,
screenpipe-app-tauri/src-tauri/target/aarch64-apple-darwin/release/bundle/macos/*.app.tar.gz
screenpipe-app-tauri/src-tauri/target/aarch64-apple-darwin/release/bundle/macos/*.dmg"

retry-win:
needs: publish-tauri
if: ${{ always() && contains(needs.publish-tauri.result, 'failure') }}
Expand Down
Loading