Updates from Overleaf #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: github-pages | |
on: | |
# Runs on pushes targeting the default branch | |
push: | |
branches: | |
- main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
SYSTEM_NAME_COMMAND: systemname | |
FILE_MAIN: main.pdf | |
FILE_ANALYTICS: abstract.log | |
# 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 | |
jobs: | |
deploy: | |
name: github-pages | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
container: arcatdmz/texlive | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build PDF file | |
run: latexmk -pdf | |
- name: Run scripts | |
run: apt update && apt install -y nodejs && node scripts/abstract.js > abstract.log | |
- name: Organize files to upload | |
run: mkdir -p docs && cp *.pdf *.log ./docs/ | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
# Upload "docs" directory | |
path: "docs" | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |
- name: Post to a Slack channel | |
# It's possible to post messages only when the build fails (or succeeds) | |
# if: failure() | |
uses: slackapi/[email protected] | |
with: | |
channel-id: ${{ secrets.SLACK_CHANNEL_CI }} | |
slack-message: | | |
New PDF file was generated | |
- GitHub Actions URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
- GitHub Pages URL: ${{ steps.deployment.outputs.page_url }}${{ env.FILE_MAIN }} | |
- Analytics URL: ${{ steps.deployment.outputs.page_url }}${{ env.FILE_ANALYTICS }} | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} |