mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-21 06:19:10 +00:00
Updated workflows
This commit is contained in:
parent
3055c3582b
commit
7579e2d580
3 changed files with 11 additions and 7 deletions
4
.github/workflows/release-beta.yaml
vendored
4
.github/workflows/release-beta.yaml
vendored
|
@ -24,10 +24,10 @@ jobs:
|
||||||
- name: Decode .env
|
- name: Decode .env
|
||||||
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
||||||
- name: Read pubspec.yaml
|
- name: Read pubspec.yaml
|
||||||
uses: adore-me/read-yaml@v1.0.0
|
uses: JGeek00/read-yaml-files@2.0.0
|
||||||
id: read_pubspec
|
id: read_pubspec
|
||||||
with:
|
with:
|
||||||
file: './pubspec.yaml'
|
file: './pubspec.yaml' # File to read from
|
||||||
key-path: '["version"]'
|
key-path: '["version"]'
|
||||||
- name: Save version on env variable
|
- name: Save version on env variable
|
||||||
id: save_version
|
id: save_version
|
||||||
|
|
8
.github/workflows/release-stable.yaml
vendored
8
.github/workflows/release-stable.yaml
vendored
|
@ -22,7 +22,7 @@ jobs:
|
||||||
- name: Decode .env
|
- name: Decode .env
|
||||||
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
||||||
- name: Read pubspec.yaml
|
- name: Read pubspec.yaml
|
||||||
uses: jbutcher5/read-yaml@1.6
|
uses: JGeek00/read-yaml-files@2.0.0
|
||||||
id: read_pubspec
|
id: read_pubspec
|
||||||
with:
|
with:
|
||||||
file: './pubspec.yaml' # File to read from
|
file: './pubspec.yaml' # File to read from
|
||||||
|
@ -79,7 +79,7 @@ jobs:
|
||||||
- name: Decode .env
|
- name: Decode .env
|
||||||
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
||||||
- name: Read pubspec.yaml
|
- name: Read pubspec.yaml
|
||||||
uses: jbutcher5/read-yaml@1.6
|
uses: JGeek00/read-yaml-files@2.0.0
|
||||||
id: read_pubspec
|
id: read_pubspec
|
||||||
with:
|
with:
|
||||||
file: './pubspec.yaml'
|
file: './pubspec.yaml'
|
||||||
|
@ -139,7 +139,7 @@ jobs:
|
||||||
- name: Decode .env
|
- name: Decode .env
|
||||||
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
run: echo "${{ secrets.ENV }}" | base64 --decode > .env
|
||||||
- name: Read pubspec.yaml
|
- name: Read pubspec.yaml
|
||||||
uses: jbutcher5/read-yaml@1.6
|
uses: JGeek00/read-yaml-files@2.0.0
|
||||||
id: read_pubspec
|
id: read_pubspec
|
||||||
with:
|
with:
|
||||||
file: './pubspec.yaml'
|
file: './pubspec.yaml'
|
||||||
|
@ -202,7 +202,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
[IO.File]::WriteAllBytes('.env', [Convert]::FromBase64String('${{ secrets.ENV }}'))
|
[IO.File]::WriteAllBytes('.env', [Convert]::FromBase64String('${{ secrets.ENV }}'))
|
||||||
- name: Read pubspec.yaml
|
- name: Read pubspec.yaml
|
||||||
uses: jbutcher5/read-yaml@1.6
|
uses: JGeek00/read-yaml-files@2.0.0
|
||||||
id: read_pubspec
|
id: read_pubspec
|
||||||
with:
|
with:
|
||||||
file: './pubspec.yaml'
|
file: './pubspec.yaml'
|
||||||
|
|
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
|
@ -12,5 +12,9 @@
|
||||||
"editor.formatOnSave": false,
|
"editor.formatOnSave": false,
|
||||||
"editor.formatOnPaste": false,
|
"editor.formatOnPaste": false,
|
||||||
"editor.formatOnType": false
|
"editor.formatOnType": false
|
||||||
}
|
},
|
||||||
|
"cSpell.ignorePaths": [
|
||||||
|
"/pubspec.yaml",
|
||||||
|
"/.github/workflows"
|
||||||
|
]
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue