Update bootstrap 2024.04.01, glibc, fakerrot #14
Workflow file for this run
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: 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}} |