2021-05-26 13:12:36 +00:00
|
|
|
name: Build Guix Installer
|
|
|
|
|
|
|
|
on:
|
2021-05-26 13:15:20 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-05-26 13:12:36 +00:00
|
|
|
|
2021-05-30 20:09:57 +00:00
|
|
|
schedule:
|
|
|
|
# build every week
|
|
|
|
- cron: "0 0 */7 * *"
|
2021-05-26 13:12:36 +00:00
|
|
|
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Git checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install Guix
|
|
|
|
uses: PromyLOPh/guix-install-action@v1
|
|
|
|
|
2021-05-30 21:38:47 +00:00
|
|
|
- name: Build ISO
|
2021-05-30 20:09:57 +00:00
|
|
|
run: |
|
2021-06-05 20:21:30 +00:00
|
|
|
# Write out the channels file so it can be included
|
2021-06-22 15:18:19 +00:00
|
|
|
guix time-machine -C './guix/base-channels.scm' -- describe -f channels > './guix/channels.scm'
|
2021-06-05 20:21:30 +00:00
|
|
|
|
|
|
|
# Build the image
|
2021-06-22 15:18:19 +00:00
|
|
|
image=$(guix time-machine -C './guix/channels.scm' -- system image -t iso9660 './guix/installer.scm')
|
2021-06-05 20:21:30 +00:00
|
|
|
|
|
|
|
# Copy the image to the local folder with a better name
|
2021-05-30 21:10:28 +00:00
|
|
|
export RELEASE_TAG=$(date +"%Y%m%d%H%M")
|
|
|
|
echo "RELEASE_TAG=$RELEASE_TAG" >> $GITHUB_ENV
|
2021-05-30 21:38:47 +00:00
|
|
|
cp $image ./guix-installer-$RELEASE_TAG.iso
|
|
|
|
|
|
|
|
- name: Prepare Release Notes
|
|
|
|
run: |
|
2021-05-30 21:35:32 +00:00
|
|
|
echo $'This installer image was prepared with the following channel configuration:\r\n\r\n```\r\n' > release-notes.md
|
2021-06-05 23:32:56 +00:00
|
|
|
cat channels.scm >> release-notes.md
|
2021-05-30 21:35:32 +00:00
|
|
|
echo $'\r\n```' >> release-notes.md
|
2021-05-30 20:09:57 +00:00
|
|
|
|
|
|
|
- name: Create Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
2021-05-26 15:23:55 +00:00
|
|
|
with:
|
2021-05-30 21:35:32 +00:00
|
|
|
name: Guix Installer - ${{ env.RELEASE_TAG }}
|
|
|
|
tag_name: v${{ env.RELEASE_TAG }}
|
2021-05-30 20:09:57 +00:00
|
|
|
body_path: release-notes.md
|
2021-05-30 21:38:47 +00:00
|
|
|
files: guix-installer-${{ env.RELEASE_TAG }}.iso
|
2021-05-30 20:09:57 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
GITHUB_REPOSITORY: SystemCrafters/guix-installer
|