Skip to content

Commit 4739dd8

Browse files
committed
Sync with microG unofficial installer
1 parent 61f67af commit 4739dd8

4 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/auto-nightly.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ jobs:
183183
prerelease: true
184184
make_latest: false
185185
overwrite_files: false
186+
preserve_order: true
186187
files: |
187188
${{ steps.build.outputs.ZIP_FOLDER }}/*.zip*
188189
${{ steps.attest.outputs.bundle-path }}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,15 @@ jobs:
7777
uses: softprops/action-gh-release@v2
7878
if: "${{ github.run_attempt == '1' && steps.build.outputs.ZIP_IS_ALPHA == 'false' && steps.build.outputs.ZIP_BUILD_TYPE_SUPPORTED == 'true' }}"
7979
with:
80+
name: "${{ inputs.tag-name || github.ref_name }}"
8081
tag_name: "${{ inputs.tag-name || github.ref_name }}"
8182
target_commitish: "${{ github.sha }}"
8283
body: "SHA-256: ${{ steps.build.outputs.ZIP_SHA256 }}\n\nSee the complete [**changelog**](./CHANGELOG.rst)."
8384
append_body: true
8485
generate_release_notes: true
8586
draft: false
8687
overwrite_files: false
88+
preserve_order: true
8789
files: |
8890
${{ steps.build.outputs.ZIP_FOLDER }}/*.zip*
8991
${{ steps.attest.outputs.bundle-path }}

.github/workflows/tag-and-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# SPDX-FileCopyrightText: (c) 2025 ale5000
33
# SPDX-License-Identifier: GPL-3.0-or-later
44

5+
# IMPORTANT: Do NOT enable "Require linear history" inside rulesets for tags or this will fail with error 422 (Reference update failed)!!!
56
name: "1) Tag and release"
67
permissions: {}
78
on:
@@ -55,6 +56,9 @@ jobs:
5556
//console.warn('::warning::Tag already exist!!!');
5657
throw new Error('Tag already exist!!!');
5758
} else {
59+
//if(response && response.name) console.warn('response.name: ' + response.name);
60+
//if(response && response.statusText) console.warn('response.statusText: ' + response.statusText);
61+
if(response && response.response && response.response.headers && response.response.headers['x-ratelimit-remaining']) console.warn('::warning::Remaining rate limit: ' + response.response.headers['x-ratelimit-remaining']);
5862
let errorMsg = 'createRef failed';
5963
if(response && response.status && response.message) errorMsg += ' with error ' + response.status + ' (' + response.message + ')';
6064
throw new Error(errorMsg);

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ build-job:
7070
expire_in: "15 minutes"
7171

7272
# Cache expiration: 14 days
73-
.ping-cache:
73+
ping-cache:
7474
stage: build
7575
interruptible: false
7676
timeout: "5 minutes"

0 commit comments

Comments
 (0)