Skip to content

updatet readme

updatet readme #17

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install dependencies
run: |
sudo apt-get update && sudo apt-get install wget tar e2fsprogs python3 -y
- name: Run Buildscript
run: |
cd build
sudo ./buildlinux.sh
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./deploy/linux/
deploy:
needs: build
if: github.ref == 'refs/heads/main'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4