mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 19:29:37 +00:00
Added Github action steps that update the online documentation repo.
This commit is contained in:
parent
e8e1889b0b
commit
735f0cda25
15
.github/workflows/snapshot-on-push-master.yml
vendored
15
.github/workflows/snapshot-on-push-master.yml
vendored
@ -96,6 +96,21 @@ jobs:
|
||||
name: cc65-snapshot-win64.zip
|
||||
path: cc65-snapshot-win64.zip
|
||||
|
||||
- name: Update the online documents.
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: cc65/doc
|
||||
path: doc.git
|
||||
- run: |
|
||||
cd doc.git
|
||||
rm *.*
|
||||
cp ../html/*.* .
|
||||
git config user.name "cc65-github"
|
||||
git config user.email "cc65.nomail@github.com"
|
||||
git config push.default simple
|
||||
git add -A
|
||||
git commit -m "Updated from cc65 commit $(GITHUB_SHA)." && git push -q || true
|
||||
|
||||
# enter secrets under "repository secrets"
|
||||
- name: Upload snapshot to sourceforge
|
||||
uses: nogsantos/scp-deploy@master
|
||||
|
Loading…
Reference in New Issue
Block a user