Test #20
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: Release ISO | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Archlinux | |
run: | | |
# sudo apt -y update | |
# sudo apt install sudo | |
curl -L https://raw.githubusercontent.com/zstg/github-actions-archlinux/master/install.sh | sudo bash | |
- name: Checkout repository using git | |
run: | | |
pacman -Sy git sudo archiso --noconfirm | |
git clone --recurse-submodules https://github.com/zstg/StratOS-iso | |
- name: Build ISO | |
id: build_iso | |
run: | | |
cd StratOS-iso | |
export BUILD_DATE=$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d) | |
sudo mount -t proc proc /__w/StratOS-iso/StratOS-iso/StratOS-iso/output/x86_64/airootfs/proc | |
sudo chmod +x ./build.sh | |
sudo bash ./build.sh # admin perms required to mount /proc | |
echo "::set-output name=date::${BUILD_DATE}" | |
- name: Upload | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "output/*.iso" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ steps.build.outputs.date }} |