Skip to content

Commit

Permalink
zip
Browse files Browse the repository at this point in the history
  • Loading branch information
ahomoudi committed Feb 26, 2024
1 parent d9a4034 commit 97f08e9
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/zip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
on:
workflow_dispatch:
push:
branches: main

name: Quarto Publish

jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Debug
run: |
ls -R
find . -type f -name "*QuartoBook.pdf*" -exec dirname "{}" \; |sort -u
pwd
- name: ZIP
run: |
mkdir Swirl
zip -r Swirl/AquaFortR_Swirl.zip AquaFortR_Swirl/
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: Swirl # The folder the action should deploy.

0 comments on commit 97f08e9

Please sign in to comment.