Skip to content

dependabot

dependabot #5

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
# this ends with resume which gets caught by the latter "json resume" entry in https://www.schemastore.org/api/json/catalog.json
# see https://github.com/neoclide/coc-yaml/issues/28#issuecomment-784849086
---
name: resume
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
env:
tectonic_version: 0.15.0
commit_message_resume: "gh-actions: add resume.pdf"
jobs:
build:
runs-on: ubuntu-latest
outputs:
leave-comment: ${{ steps.push.outputs.committed && steps.push.outputs.pushed }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Download Tectonic
uses: wtfjoke/setup-tectonic@main
with:
tectonic-version: ${{ env.tectonic_version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache Tectonic
uses: actions/cache@v2
env: { cache-name: cache-tectonic }
with:
path: ~/.cache/Tectonic
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.tex') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Build our resume
id: build
run: |
./scripts/build.sh
echo "::set-output name=msg::${{ env.commit_message_resume }}"
- name: Upload PDF
uses: actions/upload-artifact@v2
with:
name: resume # it'll be zipped :(
path: resume.pdf
# TODO: push final pdf to website repo
# - name: Push that bitch up
# id: push
# if: ${{ success() && steps.build.outputs.msg != '' }}
# uses: EndBug/[email protected]
# with:
# add: website/static
# push: true
# message: ${{ steps.build.outputs.msg }}
# author_name: github-actions
# author_email: 41898282+github-actions[bot]@users.noreply.github.com
# - name: Leave a comment
# if: |
# success() &&
# steps.push.outputs.committed == 'true' &&
# steps.push.outputs.pushed == 'true'
# uses: mshick/add-pr-comment@v1
# with:
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# repo-token-user-login: github-actions[bot]
# message: |
# ${{ env.commit_message_resume }}