test16 #13
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: | |
contents: write | |
jobs: | |
TimedUpdate: | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: Checkout Main Repo | |
uses: actions/checkout@v4 | |
with: | |
repository: 9fans/plan9port | |
path: plan9 | |
- name: Checkout this Repo | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.repository }} | |
path: web | |
- name: Install Dependecy | |
run: | | |
sudo apt-get update | |
sudo apt-get install build-essential xorg-dev | |
- name: Compile Plan9port | |
run: | | |
cd plan9 | |
sudo ./INSTALL | |
- name: Update Web | |
run: | | |
cd web | |
cp -r /user/local/plan9 ./user/local/ | |
cp -r /user/local/plan9/dist ./plan9port | |
cp -r /user/local/plan9/man ./plan9port | |
cp -r /user/local/plan9/unix ./unix | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: web | |
path: /web | |
retention-days: 1 | |
compression-level: 0 | |
- name: Commit and Push | |
run: | | |
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 |