From b68687f0bd893a84d11f08ee68dd12c34ae25609 Mon Sep 17 00:00:00 2001 From: Nareshkumar Rao <629990+naresh97@users.noreply.github.com> Date: Sun, 23 Mar 2025 03:27:54 +0100 Subject: [PATCH] wip --- .gitea/workflows/build.yaml | 45 ++++++++++++------------------------- 1 file changed, 14 insertions(+), 31 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index b4f6417..352b592 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -3,50 +3,33 @@ name: Build and Release on: push: tags: - - "*" + - '*' jobs: build: runs-on: ubuntu-latest - + steps: - name: Checkout code - uses: actions/checkout@v4 - + uses: actions/checkout@v3 + - name: Build LaTeX uses: docker://nareshkumarrao/texliveonfly:latest with: - run: | - tlmgr update --self --all - texliveonfly Main.tex - biber main - texliveonfly Main.tex - biber main - texliveonfly Main.tex - + entrypoint: /bin/sh + args: -c "tlmgr update --self --all && texliveonfly Main.tex && biber main && texliveonfly Main.tex && biber main && texliveonfly Main.tex" + # - name: Create Release - # id: create_release - # uses: actions/create-release@v1 + # uses: softprops/action-gh-release@v1 + # if: startsWith(github.ref, 'refs/tags/') + # with: + # files: Main.pdf # env: # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # with: - # tag_name: ${{ github.ref }} - # 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 + + # - name: Deploy via FTP # uses: SamKirkland/FTP-Deploy-Action@v4.3.4 + # if: startsWith(github.ref, 'refs/tags/') # with: # server: nareshkumarrao.com # username: ${{ secrets.FTP_USERNAME }}