Skip to content

Update bootstrap 2024.04.01, glibc, fakerrot #14

Update bootstrap 2024.04.01, glibc, fakerrot

Update bootstrap 2024.04.01, glibc, fakerrot #14

Workflow file for this run

name: Continuous Deployment
on:
push:
tags:
- '*'
jobs:
publish-github:
name: Publish on Github
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies for build (Apt)
shell: bash
run: |
sudo env DEBIAN_FRONTEND=noninteractive apt update -y && \
sudo env DEBIAN_FRONTEND=noninteractive apt install -y libarchive-tools
- name: Build
run: |
make
- name: Upload the release
uses: softprops/action-gh-release@v1
with:
files: |
rootfs.tar.gz
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}