wip
Some checks failed
Build and Release / build (push) Has been cancelled

This commit is contained in:
Nareshkumar Rao 2025-03-23 03:27:54 +01:00
parent 6d3f2a6942
commit b68687f0bd

View File

@ -3,50 +3,33 @@ name: Build and Release
on: on:
push: push:
tags: tags:
- "*" - '*'
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v3
- name: Build LaTeX - name: Build LaTeX
uses: docker://nareshkumarrao/texliveonfly:latest uses: docker://nareshkumarrao/texliveonfly:latest
with: with:
run: | entrypoint: /bin/sh
tlmgr update --self --all args: -c "tlmgr update --self --all && texliveonfly Main.tex && biber main && texliveonfly Main.tex && biber main && texliveonfly Main.tex"
texliveonfly Main.tex
biber main
texliveonfly Main.tex
biber main
texliveonfly Main.tex
# - name: Create Release # - name: Create Release
# id: create_release # uses: softprops/action-gh-release@v1
# uses: actions/create-release@v1 # if: startsWith(github.ref, 'refs/tags/')
# with:
# files: Main.pdf
# env: # env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref }} # - name: Deploy via FTP
# release_name: Release ${{ github.ref }}
# draft: false
# prerelease: false
# - name: Upload PDF to Release
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: ./Main.pdf
# asset_name: Main.pdf
# asset_content_type: application/pdf
# - name: Upload to FTP
# uses: SamKirkland/FTP-Deploy-Action@v4.3.4 # uses: SamKirkland/FTP-Deploy-Action@v4.3.4
# if: startsWith(github.ref, 'refs/tags/')
# with: # with:
# server: nareshkumarrao.com # server: nareshkumarrao.com
# username: ${{ secrets.FTP_USERNAME }} # username: ${{ secrets.FTP_USERNAME }}