test6 #3
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: Timed Update | |
on: | |
push: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
permissions: write-all | |
jobs: | |
TimedUpdate: | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: Clone the main repository | |
run: | | |
cd /usr/local | |
sudo git clone https://github.com/9fans/plan9port.git plan9 | |
cd plan9 | |
- name: Install build deps | |
run: | | |
sudo apt update | |
sudo apt install build-essential xorg-dev | |
- name: Build p9p | |
run: | | |
cd plan9 | |
sudo ./INSTALL | |
- name: Make man and publish | |
run: | | |
cd /usr/local/plan9/dist | |
sudo mk man | |
sudo mk publish | |
- name: Upload Artifcats | |
uses: actions/upload-artifact@v4 | |
with: | |
path: / | |
compression-level: 0 |