forked from dpowers86/debian-live
-
-
Notifications
You must be signed in to change notification settings - Fork 902
34 lines (27 loc) · 919 Bytes
/
build-istoreos-24.10.1.yml
File metadata and controls
34 lines (27 loc) · 919 Bytes
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
name: "Build iStoreOS 24.10.1 Installer ISO"
on:
workflow_dispatch:
jobs:
build-release:
name: "Build and Release"
runs-on: "ubuntu-22.04"
steps:
- name: "Checking out git repository"
uses: actions/checkout@v2
- name: Set executable permissions
run: |
chmod +x ${{ github.workspace }}/istoreos.sh
chmod +x ${{ github.workspace }}/supportFiles/istoreos/build.sh
- name: "Build iStoreOS Installer ISO"
run: |
./istoreos.sh
- name: "Publish"
uses: softprops/action-gh-release@v2.2.1
with:
tag_name: "iStoreOS-Installer-x86_64-ISO"
body_path: ${{ github.workspace }}/supportFiles/istoreos/info.md
files: |
output/istoreos-installer-x86_64.iso
token: ${{ secrets.GITHUB_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}