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

Delete old nightly release #36

Merged
merged 1 commit into from
Dec 23, 2024
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
9 changes: 8 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,21 @@ jobs:
name: companion.apk
path: companion/build/outputs/apk/nightly/signed/companion-nightly-signed.apk
if-no-files-found: error
- name: Delete existing nightly tag
run: git push origin --delete nightly || true
- name: Delete existing nightly release
run: |
curl -X DELETE
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}"
https://api.github.com/repos/${{ github.repository }}/releases/tags/nightly
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
authenticator/build/outputs/apk/nightly/signed/authenticator-nightly-signed.apk
companion/build/outputs/apk/nightly/signed/companion-nightly-signed.apk
name: Nightly Release
tag_name: nightly
release_name: Nightly Release
body: |
Nightly build for commit ${{ github.sha }}.
draft: false
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ Many websites allow you to additionally protect your accounts via certain types

Traditionally, security keys take the form of USB sticks, but there are also models that can be used via NFC, Bluetooth or Lightning. But many computers and phones even come with security key functionality built-in: Windows Hello, macOS Touch ID (with Chrome) or your Android 7+ phone can all be used with sites asking for a security key. Unfortunately, Wear OS watches could so far not be used as security keys, even though many of them are equipped with hardware facilities for cryptographic keys used for Google Pay. This is where WearAuthn comes in.

## Installation

In addition to the Google Play Store, you can also download the latest [nightly build](https://github.com/fmeum/WearAuthn/releases/tag/nightly).

## Usage

Watch a demo:
Expand Down
Loading