Skip to content

test21

test21 #18

Workflow file for this run

name: Timed Update
on:
push:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
TimedUpdate:
runs-on: [ubuntu-latest]
steps:
- name: Checkout Main Repo
uses: actions/checkout@v4
with:
repository: 9fans/plan9port
path: /home/runner/work/9fans.github.io/9fans.github.io/plan9
- name: Checkout this Repo
uses: actions/checkout@v4
with:
repository: ${{ github.repository }}
path: /home/runner/work/9fans.github.io/9fans.github.io/web
- name: Install Dependecy
run: |
sudo apt-get update
sudo apt-get install build-essential xorg-dev tree
- name: Compile Plan9port
run: |
cd /home/runner/work/9fans.github.io/9fans.github.io/
sudo cp -r plan9 /user/local
cd /usr/local/plan9
sudo ./INSTALL
- name: Update Web
run: |
cd /home/runner/work/9fans.github.io/9fans.github.io/web
cp -r /home/runner/work/9fans.github.io/9fans.github.io/plan9 /home/runner/work/9fans.github.io/9fans.github.io/web/user/local/
cp -r /usr/local/plan9/dist /home/runner/work/9fans.github.io/9fans.github.io/web/plan9port
cp -r /usr/local/plan9/man /home/runner/work/9fans.github.io/9fans.github.io/web/plan9port
cp -r /usr/local/plan9/unix /home/runner/work/9fans.github.io/9fans.github.io/web/unix
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: web
path: /home/runner/work/9fans.github.io/9fans.github.io/web
retention-days: 1
compression-level: 0
- name: Commit and Push
run: |
cd /home/runner/work/9fans.github.io/9fans.github.io/web
git config --global user.email "[email protected]"
git config --global user.name "Eason Lu (Automated, Github Actions)"
git add .
git commit -m "Automated Update"
git push