Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Global owners

* @Metasig/devs
25 changes: 25 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Summary

- One-line summary of the change and why it matters.

## Context

- Links: issue, ticket, or related PRs.

## Changes

- Short bullet list of the key changes made.

## Checklist

- [ ] Tests added/updated
- [ ] Docs updated (if needed)

## Risks

- Brief note about possible risks or impact.

## How to test

- Short, reproducible steps to verify the change.
z
25 changes: 0 additions & 25 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,3 @@ jobs:
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev
- run: cargo build

build_android:
name: build Android plugin
runs-on: ubuntu-latest
needs: cargo_build
defaults:
run:
working-directory: ./android

steps:
- uses: actions/checkout@v4
- run: ./gradlew build

build_ios:
name: build iOS plugin
runs-on: ubuntu-latest
needs: cargo_build
defaults:
run:
working-directory: ./ios

steps:
- uses: actions/checkout@v4
- uses: swift-actions/setup-swift@v2
- run: swift build
28 changes: 24 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ name: publish

on:
workflow_dispatch:
push:
branches:
- main

jobs:
publish_gh_packages:
Expand Down Expand Up @@ -33,6 +30,29 @@ jobs:
run: pnpm install --frozen-lockfile

- name: pnpm publish
run: pnpm publish --access restricted --publish-branch main --tag next
run: pnpm publish --access restricted
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

release:
needs: publish_gh_packages
runs-on: ubuntu-latest

permissions:
contents: write # publish a GitHub release
issues: write # comment on released issues
pull-requests: write # comment on released pull requests

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v4
with:
node-version: "lts/*"

- name: semantic-release
run: npx semantic-release@24
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34 changes: 0 additions & 34 deletions .github/workflows/release-dry-run.yaml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/telegram-notification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Telegram notification

on:
pull_request:
types: [opened, reopened]

jobs:
telegram-bot:
name: Telegram Bot
runs-on: ubuntu-latest
steps:
- name: Telegram Notify
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
format: markdown
disable_web_page_preview: true
message: |
${{ github.event.pull_request.draft && '📝 New draft PR' || '🔔 New PR' }} by: *${{ github.event.pull_request.user.login }}*
*${{ github.event.pull_request.title }}*
🔍 ${{ github.event.pull_request.html_url }}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metasig/tauri-plugin-keystore-api",
"version": "2.2.0",
"version": "2.3.0",
"author": "0x330a",
"description": "Interact with the device-native key storage (Android Keystore, iOS Keychain) & perform ecdh operations for generating symmetric keys",
"type": "module",
Expand Down Expand Up @@ -36,4 +36,4 @@
"type": "git",
"url": "git+https://github.com/Metasig/tauri-plugin-keystore.git"
}
}
}