mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-02 19:44:26 +00:00
Merge branch 'beta'
This commit is contained in:
commit
943fcc602f
3 changed files with 15 additions and 16 deletions
6
.github/workflows/release-beta.yaml
vendored
6
.github/workflows/release-beta.yaml
vendored
|
@ -26,11 +26,11 @@ jobs:
|
|||
- name: Decode .env
|
||||
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
||||
- name: Read pubspec.yaml
|
||||
uses: jbutcher5/read-yaml@1.6
|
||||
uses: christian-ci/action-yaml-github-output@v2
|
||||
id: read_pubspec
|
||||
with:
|
||||
file: './pubspec.yaml'
|
||||
key-path: '["version"]'
|
||||
file_path: './pubspec.yaml'
|
||||
main_key: version
|
||||
- name: Save version on env variable
|
||||
id: save_version
|
||||
run: |
|
||||
|
|
24
.github/workflows/release-stable.yaml
vendored
24
.github/workflows/release-stable.yaml
vendored
|
@ -23,11 +23,11 @@ jobs:
|
|||
- name: Decode .env
|
||||
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
||||
- name: Read pubspec.yaml
|
||||
uses: jbutcher5/read-yaml@1.6
|
||||
uses: christian-ci/action-yaml-github-output@v2
|
||||
id: read_pubspec
|
||||
with:
|
||||
file: './pubspec.yaml'
|
||||
key-path: '["version"]'
|
||||
file_path: './pubspec.yaml'
|
||||
main_key: version
|
||||
- name: Save version on env variable
|
||||
id: save_version
|
||||
run: |
|
||||
|
@ -80,11 +80,11 @@ jobs:
|
|||
- name: Decode .env
|
||||
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
||||
- name: Read pubspec.yaml
|
||||
uses: jbutcher5/read-yaml@1.6
|
||||
uses: christian-ci/action-yaml-github-output@v2
|
||||
id: read_pubspec
|
||||
with:
|
||||
file: './pubspec.yaml'
|
||||
key-path: '["version"]'
|
||||
file_path: './pubspec.yaml'
|
||||
main_key: version
|
||||
- name: Save version on env variable
|
||||
id: save_version
|
||||
run: |
|
||||
|
@ -140,11 +140,11 @@ jobs:
|
|||
- name: Decode .env
|
||||
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
||||
- name: Read pubspec.yaml
|
||||
uses: jbutcher5/read-yaml@1.6
|
||||
uses: christian-ci/action-yaml-github-output@v2
|
||||
id: read_pubspec
|
||||
with:
|
||||
file: './pubspec.yaml'
|
||||
key-path: '["version"]'
|
||||
file_path: './pubspec.yaml'
|
||||
main_key: version
|
||||
- name: Save version on env variable
|
||||
id: save_version
|
||||
run: |
|
||||
|
@ -203,11 +203,11 @@ jobs:
|
|||
run: |
|
||||
[IO.File]::WriteAllBytes('.env', [Convert]::FromBase64String('${{ secrets.ENV }}'))
|
||||
- name: Read pubspec.yaml
|
||||
uses: jbutcher5/read-yaml@1.6
|
||||
uses: christian-ci/action-yaml-github-output@v2
|
||||
id: read_pubspec
|
||||
with:
|
||||
file: './pubspec.yaml'
|
||||
key-path: '["version"]'
|
||||
file_path: './pubspec.yaml'
|
||||
main_key: version
|
||||
- name: Save version on env variable
|
||||
shell: bash
|
||||
id: save_version
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import 'dart:convert';
|
||||
|
||||
import 'package:http/http.dart' as http;
|
||||
import 'package:sentry_flutter/sentry_flutter.dart';
|
||||
|
||||
import 'package:adguard_home_manager/models/github_release.dart';
|
||||
import 'package:adguard_home_manager/constants/urls.dart';
|
||||
|
|
Loading…
Add table
Reference in a new issue