Skip to content

Commit

Permalink
Use shared workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
VaiTon committed Jul 6, 2023
1 parent 09741ba commit 780060a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 220 deletions.
78 changes: 7 additions & 71 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,79 +1,15 @@

name: Build and Deploy
on:
push:
branches: main
branches: [main]
pull_request:
branches: main
# Allows you to run this workflow manually from the Actions tab
branches: [main]
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

env:
REGEX_INCLUDE: "\\.(pdf|link|txt|c|sh|py|gz|apkg)$"

jobs:
build:
runs-on: ubuntu-latest
name: Build pdfs out of tex,md and various doc files
container:
image: ghcr.io/csunibo/build-image:latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1

- name: Recursively compile tex files
run: rec "\.tex$" "xelatex -pdf"

- name: Recursively compile (doc|ppt)x? files
run: rec "\.(doc|ppt)x?$" "libreoffice --headless --convert-to pdf --outdir ."

- name: Recursively compile md files
run: rec "\.md$" /usr/bin/md2pdf

- name: Recursively compile xopp files
run: rec "\.xopp$" /usr/bin/xopp2pdf

- name: Generate static directory listing
run: statik -page /usr/share/page.gohtml -l -b "https://${{ github.event.repository.owner.name }}.github.io/${{ github.event.repository.name }}/" -i "$REGEX_INCLUDE" site

- name: Generate site artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v3
with:
name: build
path: ./site

deploy:
name: Deploy to Github Pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- name: Download static site artifact
uses: actions/download-artifact@v3
with:
name: build
path: site
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
name: Deploy
uses: csunibo/config/.github/workflows/statik.yml@main
with:
regex_include: "\\.(pdf|link|txt|c|sh|py|gz|apkg)$"
111 changes: 0 additions & 111 deletions .github/workflows/build-and-deploy.yml.rej

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/page.gohtml

This file was deleted.

0 comments on commit 780060a

Please sign in to comment.