mirror of
https://github.com/house-of-abbey/GarminHomeAssistant.git
synced 2025-09-16 05:31:32 +00:00
Compare commits
6 Commits
4cf5a0ae26
...
CI-Release
Author | SHA1 | Date | |
---|---|---|---|
|
cb819fce73 | ||
|
ef299bcaf6 | ||
|
f0eb9c26b1 | ||
|
f1c592179d | ||
|
4ed81df60a | ||
|
b4f5f34760 |
32
.github/workflows/release.yaml
vendored
Normal file
32
.github/workflows/release.yaml
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
name: Release
|
||||
run-name: ${{ github.actor }} is releasing 🚀
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
Create-Release:
|
||||
runs-on: ubuntu-latest
|
||||
environment: production
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Decrypt developer key
|
||||
# see https://docs.github.com/en/actions/security-for-github-actions/security-guides/using-secrets-in-github-actions#storing-large-secrets
|
||||
run: ./.github/scripts/decrypt_secret.sh
|
||||
env:
|
||||
INPUT: ./developer_key.gpg
|
||||
OUTPUT: ./developer_key
|
||||
PASSPHRASE: ${{ secrets.DEVELOPER_KEY_PASSPHRASE }}
|
||||
- name: Create release
|
||||
uses: blackshadev/garmin-connectiq-release-action@8.2.1
|
||||
with:
|
||||
projectJungle: ./monkey.jungle
|
||||
developerKey: ./developer_key
|
||||
outputPath: out/app.iq
|
||||
- name: Upload release artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: garmin-home-assistant-${{ github.ref_name }}
|
||||
path: out/app.iq
|
@@ -20,7 +20,7 @@ using Toybox.System;
|
||||
//! WebLog provides a logging and hence debugging aid for when the application is
|
||||
//! deployed to the watch. This is only used for development and use of it must not
|
||||
//! persist into a deployed version. It uses a string buffer to group log entries into
|
||||
//! larger submissions in order to prevent overflow of the blue tooth stack.
|
||||
//! larger submissions in order to prevent overflow of the Bluetooth stack.
|
||||
//!
|
||||
//! Usage:
|
||||
//! <pre>
|
||||
|
@@ -27,7 +27,7 @@ using Toybox.WatchUi;
|
||||
//
|
||||
class WebhookManager {
|
||||
|
||||
//! Callback for requesting a Webhoo ID.
|
||||
//! Callback for requesting a Webhook ID.
|
||||
//!
|
||||
//! @param responseCode Response code
|
||||
//! @param data Return data
|
||||
|
@@ -37,7 +37,7 @@
|
||||
margin-left: 0.5em;
|
||||
filter: grayscale() invert();
|
||||
}
|
||||
.template {
|
||||
.template, .info {
|
||||
background-image: url(../resources-icons-48/info_type.svg);
|
||||
background-size: contain;
|
||||
margin-left: 0.5em;
|
||||
|
Reference in New Issue
Block a user