Skip to content

Commit

Permalink
chore: workflow updates (#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewTriesToCode authored Mar 30, 2024
1 parent a916a26 commit 7418855
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/copy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Copy docs to website

on: [workflow_dispatch]

jobs:
checkout-copy-checkin:
runs-on: ubuntu-latest
steps:
- name: Checkout Finbuckl.MultiTenant
uses: actions/checkout@v4
with:
path: main
fetch-depth: 0 # Required due to the way Git works, without it this action won't be able to find any or the correct tags
- name: Get Current Version
id: currentversion
uses: WyriHaximus/github-action-get-previous-tag@v1
with:
workingDirectory: main
prefix: v
- name: Checkout Website
uses: actions/checkout@v4
with:
repository: Finbuckle/Website
path: website
- name: Copy Docs
run: mkdir -p website/docs/${{ steps.currentversion.outputs.tag }} && cp main/docs/* website/docs/${{ steps.currentversion.outputs.tag }}
- name: Checkin Website
working-directory: website
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "chore: docs generated"
git push

0 comments on commit 7418855

Please sign in to comment.