Skip to content

Renovate: paddyroddy/.github #68

Renovate: paddyroddy/.github

Renovate: paddyroddy/.github #68

Workflow file for this run

---
name: Deploy
on:
push:
branches:
- main
- renovate/**
pull_request:
concurrency:
cancel-in-progress: true
group: >-
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
jobs:
chktex:
runs-on: ubuntu-latest
steps:
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/latex/chktex@72bb3761f6e735f48062c92064c9d3fb4ad52620 # v0
vale:
runs-on: ubuntu-latest
steps:
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/latex/vale@72bb3761f6e735f48062c92064c9d3fb4ad52620 # v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
compile-latex:
runs-on: ubuntu-latest
steps:
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/latex/compile@72bb3761f6e735f48062c92064c9d3fb4ad52620 # v0
- name: Upload artefacts
# yamllint disable-line rule:line-length
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4
with:
name: artefacts
path: "*.pdf"
if-no-files-found: error
upload-to-dropbox:
if: github.ref == 'refs/heads/main'
needs: compile-latex
runs-on: ubuntu-latest
steps:
- name: Download artefacts
# yamllint disable-line rule:line-length
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
name: artefacts
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/dropbox@72bb3761f6e735f48062c92064c9d3fb4ad52620 # v0
with:
configfile-version: ${{ secrets.CONFIGFILE_VERSION }}
files-to-upload: $(find . -maxdepth 1 -name '*.pdf' -print)
oauth-app-key: ${{ secrets.OAUTH_APP_KEY }}
oauth-app-secret: ${{ secrets.OAUTH_APP_SECRET }}
oauth-refresh-token: ${{ secrets.OAUTH_REFRESH_TOKEN }}