CI #720
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: build | |
run: | | |
sudo apt update | |
sudo apt install curl mtools squashfs-tools grub-pc-bin grub-efi xorriso debootstrap -y | |
sudo bash build.sh | |
sudo mkdir -p /output | |
sudo mv *.iso /output/pardus-23.x-32bit.iso | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "main" | |
prerelease: false | |
title: "23.x stable" | |
files: | | |
/output/* | |