-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Slidev homepage workflow and update Slidev GH Pages workflow
- Loading branch information
1 parent
7d51b55
commit 0acb193
Showing
2 changed files
with
49 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Upload Exported Slidev to HomePage | ||
|
||
on: | ||
# Runs on pushes targeting the default branch | ||
push: | ||
branches: ["main"] | ||
paths: | ||
- "$SLIDEV_PATH/**.pdf" | ||
- ".github/workflows/slidev-homepage.yml" | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Default values for the inputs to this workflow | ||
env: | ||
SLIDEV_PATH: ${{ vars.SLIDEV_PATH }} | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone local repository | ||
uses: actions/checkout@v4 | ||
with: | ||
path: slidev | ||
|
||
- name: Clone target repository | ||
uses: actions/checkout@v4 | ||
environment: homepage | ||
env: | ||
SLIDE_PATH:: ${{ vars.SLIDE_PATH }} | ||
with: | ||
repository: ${{ vars.HOMEPAGE_REPO }} | ||
token: ${{ secrets.GH_PAT }} | ||
path: homepage | ||
|
||
- name: Copy exported slidev to target repository | ||
run: cp slidev/$SLIDEV_PATH/*.pdf homepage/$SLIDE_PATH | ||
|
||
- name: Commit and push changes | ||
run: | | ||
cd homepage | ||
git config user.name ${{ github.repository }} | ||
git add . | ||
git commit -m "Update slide" | ||
git push | ||
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