Skip to content

Commit c8e1b44

Browse files
committed
Sync with microG unofficial installer
1 parent 6153cec commit c8e1b44

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.github/workflows/auto-nightly.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,10 @@ jobs:
179179
body: "Latest automatically built ZIP (unstable development snapshot).\nAttestation: ${{ steps.attest.outputs.attestation-url }}\n\nSHA-256: ${{ steps.build.outputs.ZIP_SHA256 }}"
180180
append_body: false
181181
generate_release_notes: false
182-
make_latest: false
183182
draft: false
184183
prerelease: true
184+
make_latest: false
185+
overwrite_files: false
185186
files: |
186187
${{ steps.build.outputs.ZIP_FOLDER }}/*.zip*
187188
${{ steps.attest.outputs.bundle-path }}

.github/workflows/auto-release-from-tag.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions: {}
77
on:
88
push:
99
tags:
10-
- "v[0-9]+.[0-9]+*"
10+
- "v*.*"
1111
workflow_call:
1212
inputs:
1313
tag-name:
@@ -19,7 +19,7 @@ jobs:
1919
name: "Release"
2020
runs-on: ubuntu-latest
2121
timeout-minutes: 30
22-
if: "${{ startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' }}"
22+
if: "${{ startsWith(inputs.tag-name, 'v') || startsWith(github.ref, 'refs/tags/v') }}"
2323
concurrency:
2424
group: "${{ github.repository_id }}-${{ github.workflow }}-release"
2525
cancel-in-progress: false
@@ -83,6 +83,7 @@ jobs:
8383
append_body: true
8484
generate_release_notes: true
8585
draft: false
86+
overwrite_files: false
8687
files: |
8788
${{ steps.build.outputs.ZIP_FOLDER }}/*.zip*
8889
${{ steps.attest.outputs.bundle-path }}

.github/workflows/code-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
branches:
1212
- "**"
1313
tags:
14-
- "v*"
14+
- "v*.*"
1515
pull_request:
1616
jobs:
1717
shellchecker:

.github/workflows/coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ on:
1111
branches:
1212
- "**"
1313
tags:
14-
- "v*"
14+
- "v*.*"
1515
pull_request:
1616
jobs:
17-
base-job:
18-
name: "Base"
17+
coverage:
18+
name: "Coverage"
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 20
2121
concurrency:
22-
group: "${{ github.repository_id }}-${{ github.workflow }}-base"
22+
group: "${{ github.repository_id }}-${{ github.workflow }}-coverage"
2323
cancel-in-progress: false
2424

2525
steps:

0 commit comments

Comments
 (0)