updated source-recipes (#128) #352
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: Nightly Vinix rebuild | |
#on: | |
# schedule: | |
# - cron: '0 0 * * *' | |
on: | |
push: | |
branches: [main] | |
jobs: | |
vinix-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install build-essential make curl git mercurial libarchive-tools xorriso -y | |
- name: Build distro | |
run: make -j distro-full | |
- name: Build ISO | |
run: make -j all | |
- name: Set TAG_DATE variable | |
run: echo "TAG_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | |
- name: Tag new nightly release | |
run: git tag nightly-$TAG_DATE && git push --tags | |
- name: Rename vinix.iso | |
run: mv vinix.iso vinix-nightly-$(date +'%Y%m%d').iso | |
- name: Create nightly release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: Nightly build ${{ env.TAG_DATE }} | |
tag_name: nightly-${{ env.TAG_DATE }} | |
body: Image of an up to date Vinix nightly build. | |
files: | | |
vinix-nightly-*.iso | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |