forked from micro5k/microg-unofficial-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (71 loc) · 2.5 KB
/
auto-nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
# SPDX-FileCopyrightText: (c) 2025 ale5000
# SPDX-License-Identifier: GPL-3.0-or-later
name: "Nightly"
permissions: {}
on:
push:
branches:
- "main"
jobs:
base-job:
name: "Nightly"
runs-on: ubuntu-latest
permissions:
contents: write # Needed to create a tag
steps:
- name: "Checkout sources"
uses: actions/checkout@v4
- name: "Setup Java"
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
- name: "Build nightly"
id: "build"
shell: bash
run: |
### Building...
BUILD_TYPE='oss' '${{ github.workspace }}/build.sh'
- name: "ZIP info"
run: |
# Retrieve informations...
ZIP_FOLDER='${{ steps.build.outputs.ZIP_FOLDER }}'
ZIP_FILENAME='${{ steps.build.outputs.ZIP_FILENAME }}'
ZIP_VERSION='${{ steps.build.outputs.ZIP_VERSION }}'
ZIP_SHORT_COMMIT_ID='${{ steps.build.outputs.ZIP_SHORT_COMMIT_ID }}'
ZIP_BUILD_TYPE='${{ steps.build.outputs.ZIP_BUILD_TYPE }}'
ZIP_SHA256='${{ steps.build.outputs.ZIP_SHA256 }}'
ZIP_MD5='${{ steps.build.outputs.ZIP_MD5 }}'
# Displaying informations...
printf '%s\n' "::notice::Filename: ${ZIP_FILENAME:-Missing}"
printf '%s\n' "::notice::Version: ${ZIP_VERSION:-Missing}"
printf '%s\n' "::notice::Short commit ID: ${ZIP_SHORT_COMMIT_ID:-Missing}"
printf '%s\n' "::notice::Build type: ${ZIP_BUILD_TYPE:-Missing}"
printf '%s\n' "::notice::SHA-256: ${ZIP_SHA256:-Missing}"
printf '%s\n' "::notice::MD5: ${ZIP_MD5:-Missing}"
: "${ZIP_FOLDER:?}" || exit "${?}"
- name: "Delete previous nightly tag"
uses: actions/github-script@v7
with:
retries: 3
script: |
github.rest.git.deleteRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'tags/nightly'
}).catch(error => {
if(error.status !== 422 || error.message !== 'Reference does not exist') throw error
})
- name: "Create nightly release"
uses: softprops/action-gh-release@v2
with:
name: "Nightly build"
tag_name: "nightly"
body: ""
append_body: false
generate_release_notes: false
make_latest: false
draft: false
prerelease: true
files: "${{ steps.build.outputs.ZIP_FOLDER }}/*.zip*"